wok-stable annotate 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
rev   line source
erjo@3131 1 # SliTaz package receipt.
erjo@3131 2
erjo@3131 3 PACKAGE="bin86"
erjo@3131 4 VERSION="0.16.17"
erjo@3131 5 CATEGORY="development"
erjo@3131 6 SHORT_DESC="80x86 assembler and linker"
erjo@3131 7 MAINTAINER="erjo@slitaz.org"
erjo@3131 8 DEPENDS=""
erjo@3131 9 BUILD_DEPENDS="slitaz-toolchain"
erjo@3131 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@3131 11 WEB_SITE="http://www.debath.co.uk/dev86/"
erjo@3131 12 WGET_URL="http://www.debath.co.uk/dev86/$TARBALL"
erjo@3131 13
erjo@3131 14 # Rules to configure and make the package.
erjo@3131 15 compile_rules()
erjo@3131 16 {
erjo@3131 17 cd $src
erjo@3131 18 make
erjo@3131 19 }
erjo@3131 20
erjo@3131 21 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3131 22 genpkg_rules()
erjo@3131 23 {
erjo@3131 24 mkdir -p $fs/usr/bin
erjo@3131 25 cp -a $src/as/as86 $fs/usr/bin
erjo@3131 26 cp -a $src/ld/ld86 $fs/usr/bin
erjo@3131 27 cp -a $src/ld/objdump86 $fs/usr/bin
erjo@3131 28 cd $fs/usr/bin
erjo@3131 29 ln -sf objdump86 nm86
erjo@3131 30 ln -sf objdump86 size86
erjo@3131 31 }
erjo@3131 32