wok view emotion/receipt @ rev 14781

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 05 13:51:55 2013 +0200 (2013-07-05)
parents b7bc7276d325
children cbac9bfae97c
line source
1 # SliTaz package receipt.
3 PACKAGE="emotion"
4 VERSION="1.7.7"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL video and audio codec playback library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
11 TAGS="e enlightenment efl"
13 DEPENDS="edje eio eeze xine-lib"
14 BUILD_DEPENDS="edje-dev eio-dev eeze-dev
15 xine-lib-dev"
16 OPTIONAL_DEPENDS="gstreamer-dev gst-plugins-base-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 CFLAGS="$CFLAGS -fvisibility=hidden"
22 LDFLAGS="$LDFLAGS -fvisibility=hidden"
23 export LDFLAGS
25 ./configure \
26 --disable-doc \
27 --enable-emotion-test \
28 $CONFIGURE_ARGS &&
29 make $MAKEFILE && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/edje/modules/emotion/linux-gnu-i486-1.0.0 \
36 $fs/usr/lib/emotion
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/share $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/lib/emotion/*.so $fs/usr/lib/emotion
41 cp -a $install/usr/lib/edje/modules/emotion/linux-gnu-i486-1.0.0/*.so \
42 $fs/usr/lib/edje/modules/emotion/linux-gnu-i486-1.0.0
43 }