# HG changeset patch # User Eric Joseph-Alexandre # Date 1242811620 -7200 # Node ID dcc4c5ca0e2c96e2c2f6508d5065df13b062967e # Parent cc78b438f35120299328473d85792101477b9e8f Add: bin86 (8086 assembler and linker) diff -r cc78b438f351 -r dcc4c5ca0e2c bin86/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin86/receipt Wed May 20 11:27:00 2009 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="bin86" +VERSION="0.16.17" +CATEGORY="development" +SHORT_DESC="80x86 assembler and linker" +MAINTAINER="erjo@slitaz.org" +DEPENDS="" +BUILD_DEPENDS="slitaz-toolchain" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.debath.co.uk/dev86/" +WGET_URL="http://www.debath.co.uk/dev86/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/as/as86 $fs/usr/bin + cp -a $src/ld/ld86 $fs/usr/bin + cp -a $src/ld/objdump86 $fs/usr/bin + cd $fs/usr/bin + ln -sf objdump86 nm86 + ln -sf objdump86 size86 +} +