wok diff acme/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents
children 8525be25baad
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/acme/receipt	Mon Apr 14 19:59:46 2014 +0200
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="acme"
     1.7 +VERSION="0.91"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="A Crossassembler for Multiple Environments (6502, 65c02 and 65816)."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE${VERSION/./}src.tar.bz2"
    1.13 +WEB_SITE="http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/acme"
    1.14 +WGET_URL="$WEB_SITE/current/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS=""
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src/src
    1.23 +	make
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/bin
    1.30 +	cp -a $src/src/acme $fs/usr/bin
    1.31 +}