wok view emotion/receipt @ rev 5081

Added ctags.
author Liu Peng <rocky@slitaz.org>
date Mon Mar 15 01:06:11 2010 +0000 (2010-03-15)
parents 6e90579538d6
children 83e2b2ddf023
line source
1 # SliTaz package receipt.
3 PACKAGE="emotion"
4 VERSION="42672"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 emotion libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xine-lib xorg-libXp xorg-libXss fribidi edje xorg-libXdamage \
9 xorg-libXtst gnutls jpeg fontconfig glib eina libtasn1"
10 BUILD_DEPENDS="eet-dev evas-dev ecore-dev embryo-dev edje-dev xine-lib-dev
11 xorg-libXp-dev xorg-libXss-dev fribidi-dev"
12 WEB_SITE="http://www.enlightenment.org/"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
18 svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
19 -r $VERSION $PACKAGE-$VERSION
20 cd $src
21 ./autogen.sh \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 --disable-gstreamer \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/emotion
34 cp -a $_pkg/usr/share $fs/usr
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/lib/emotion/*.so $fs/usr/lib/emotion
38 }