wok view emotion/receipt @ rev 6353

Up: libexif, libexif-dev to 0.6.19.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Sep 20 22:25:37 2010 +0000 (2010-09-20)
parents 83e2b2ddf023
children bdee814cdcb4
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 TARBALL=$SOURCES_REPOSITORY/$PACKAGE-svn-$VERSION.tar.gz
19 if [ -f $TARBALL ]; then
20 tar xzf $TARBALL
21 else
22 svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
23 -r $VERSION $PACKAGE-$VERSION &&
24 tar czf $TARBALL $PACKAGE-$VERSION
25 fi
26 cd $src
27 ./autogen.sh \
28 --prefix=/usr \
29 --mandir=/usr/share/man \
30 --disable-gstreamer \
31 $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$PWD/_pkg install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/lib/emotion
40 cp -a $_pkg/usr/share $fs/usr
41 cp -a $_pkg/usr/bin $fs/usr
42 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
43 cp -a $_pkg/usr/lib/emotion/*.so $fs/usr/lib/emotion
44 }