wok annotate embryo/receipt @ rev 8505

Update e17 stuff to last version
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Feb 12 02:21:51 2011 +0100 (2011-02-12)
parents f99c07c038f7
children 5c7bde556b6a
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@140 3 PACKAGE="embryo"
gokhlayeh@8505 4 VERSION="1.0.0"
gokhlayeh@8505 5 CATEGORY="base-system"
gokhlayeh@8505 6 SHORT_DESC="Enlightenment's virtual machine engine and bytecode compiler used in Edje."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@8505 8 DEPENDS="glibc-base"
pankso@2022 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@140 10 WEB_SITE="http://www.enlightenment.org/"
gokhlayeh@8505 11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
pankso@140 12
pankso@140 13 # Rules to configure and make the package.
pankso@140 14 compile_rules()
pankso@140 15 {
pankso@140 16 cd $src
gokhlayeh@8505 17 ./configure && make && make install
pankso@140 18 }
pankso@140 19
pankso@140 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@140 21 genpkg_rules()
pankso@140 22 {
pankso@140 23 mkdir -p $fs/usr/lib
pankso@140 24 cp -a $_pkg/usr/share $fs/usr
pankso@140 25 cp -a $_pkg/usr/bin $fs/usr
pankso@140 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@140 27 }
pankso@140 28