wok view emotion/receipt @ rev 3774

Up: python-django (1.1)
author Claudinei Pereira <claudinei@slitaz.org>
date Thu Jul 30 10:16:57 2009 +0000 (2009-07-30)
parents ecb146e32c08
children 3f9fca51615e
line source
1 # SliTaz package receipt.
3 PACKAGE="emotion"
4 VERSION="40505"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 emotion libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="enlightenment xine-lib"
9 BUILD_DEPENDS="eet-dev evas-dev ecore-dev embryo-dev edje-dev xine-lib-dev"
10 WEB_SITE="http://www.enlightenment.org/"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
16 svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
17 -r $VERSION $PACKAGE-$VERSION
18 cd $src
19 ./autogen.sh \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --disable-gstreamer \
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/emotion
32 cp -a $_pkg/usr/share $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/emotion/*.so $fs/usr/lib/emotion
36 }