wok view acme/receipt @ rev 19937

Up fzy (0.9)
author Paul Issott <paul@slitaz.org>
date Sun Apr 30 13:56:58 2017 +0100 (2017-04-30)
parents 954af192f8fe
children ce084335362a
line source
1 # SliTaz package receipt.
3 PACKAGE="acme"
4 VERSION="0.91"
5 CATEGORY="development"
6 SHORT_DESC="A Crossassembler for Multiple Environments (6502, 65c02 and 65816)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE${VERSION/./}src.tar.bz2"
10 WEB_SITE="http://www.esw-heim.tu-clausthal.de/~marco/smorbrod/acme"
11 WGET_URL="$WEB_SITE/current/$TARBALL"
12 TAGS="cross assembler 6502"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/src
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/src/acme $fs/usr/bin
29 }