wok view embryo/receipt @ rev 10319

embryo: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 23:58:33 2011 +0000 (2011-05-21)
parents 85cd798d6997
children 214dca097a22
line source
1 # SliTaz package receipt.
3 PACKAGE="embryo"
4 VERSION="1.0.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's virtual machine engine and bytecode compiler used in Edje."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure $CONFIGURE_ARGS &&
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/share $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }