wok view acme/receipt @ rev 19898

linld/tazboot: fix set_kernel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 07 21:50:50 2017 +0200 (2017-04-07)
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 }