wok view embryo/receipt @ rev 9054

amule: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 11:38:47 2011 +0100 (2011-03-04)
parents f99c07c038f7
children 5c7bde556b6a
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 && make && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $_pkg/usr/share $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 }