wok-current view edje/receipt @ rev 4465
Up: slitaz-mercurial-style (2.0)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Nov 08 23:30:24 2009 +0100 (2009-11-08) |
parents | 236a47acb6f7 |
children | f99c07c038f7 |
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="0.9.92.062"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="eet evas ecore embryo libcurl openssl"
9 BUILD_DEPENDS="pkg-config eet evas ecore embryo eet-dev embryo-dev \
10 evas-dev ecore-dev ecore"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/snapshots/2009-07-29/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share $fs/usr
34 chmod 755 $fs/usr/bin/*
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 for i in $fs/usr/lib/*.so ; do
37 [ -L $i ] || continue
38 [ -e $i.0 ] && continue
39 target=$(readlink $i)
40 case "$target" in
41 *.so.0.*) ln -s $target $i.0;;
42 esac
43 done
44 }