wok view edje/receipt @ rev 10315

edje: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 23:52:04 2011 +0000 (2011-05-21)
parents e2a1bd72d93d
children 03b99851e086
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="1.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
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"
12 DEPENDS="eina eet evas embryo ecore lua"
13 BUILD_DEPENDS="eina-dev eet-dev evas-dev embryo-dev ecore-dev lua-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --enable-amalgamation \
20 $CONFIGURE_ARGS && \
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share $fs/usr
30 chmod 755 $fs/usr/bin/*
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }