wok view elementary/receipt @ rev 14587

Add missing deps coreutils-disk and coreutils-redirection for use tee and df command instead of Busybox
author Stanislas Leduc <shann@slitaz.org>
date Sun May 26 19:06:03 2013 +0200 (2013-05-26)
parents 0941341ce316
children 77134b1c6b17
line source
1 # SliTaz package receipt.
3 PACKAGE="elementary"
4 VERSION="1.7.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Widget toolkit and EFL wrapper."
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
22 ./configure \
23 --datadir=/usr/share2 \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 # lib
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/edje $fs/usr/lib
34 cp -a $install/usr/lib/elementary $fs/usr/lib
35 rm -f $fs/usr/lib/*/modules/*/*/*.la
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 # Package: libelementary
38 rm -f $fs/usr/lib/libelementary.so.*
39 # share
40 # /usr/share2: to not automatically install /usr/share/applications
41 mkdir -p $fs/usr/share
42 cp -a $install/usr/share2/elementary $fs/usr/share
43 }