wok view bin86/receipt @ rev 3131

Add: bin86 (8086 assembler and linker)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 20 11:27:00 2009 +0200 (2009-05-20)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="bin86"
4 VERSION="0.16.17"
5 CATEGORY="development"
6 SHORT_DESC="80x86 assembler and linker"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="slitaz-toolchain"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.debath.co.uk/dev86/"
12 WGET_URL="http://www.debath.co.uk/dev86/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/as/as86 $fs/usr/bin
26 cp -a $src/ld/ld86 $fs/usr/bin
27 cp -a $src/ld/objdump86 $fs/usr/bin
28 cd $fs/usr/bin
29 ln -sf objdump86 nm86
30 ln -sf objdump86 size86
31 }