wok view elementary/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 10c512457b33
children 62b015effe9d
line source
1 # SliTaz package receipt.
3 PACKAGE="elementary"
4 VERSION="1.7.7"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL full regular widget set."
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="efreet emotion ethumb libelementary"
14 BUILD_DEPENDS="efreet-dev emotion-dev ethumb-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 CFLAGS="$CFLAGS -fvisibility=hidden"
20 LDFLAGS="$LDFLAGS -fvisibility=hidden"
21 export LDFLAGS
23 ./configure --datadir=/usr/share2 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 # lib
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/edje $fs/usr/lib
33 cp -a $install/usr/lib/elementary $fs/usr/lib
34 rm -f $fs/usr/lib/*/modules/*/*/*.la
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 # Package: libelementary
37 rm -f $fs/usr/lib/libelementary.so.*
38 # share
39 # /usr/share2: to not automatically install /usr/share/applications
40 mkdir -p $fs/usr/share
41 cp -a $install/usr/share2/elementary $fs/usr/share
42 }