# HG changeset patch # User Christopher Rogers # Date 1287345414 0 # Node ID bf7f160ddd1d63b4f5c3acd19149bd0899c69464 # Parent 54bd246281776507301e091567092838ea2b2abb Added bin86. A complete 8086 and loader. Needed to build virtualbox-ose. diff -r 54bd24628177 -r bf7f160ddd1d bin86/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin86/receipt Sun Oct 17 19:56:54 2010 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="bin86" +VERSION="0.16.17" +CATEGORY="development" +SHORT_DESC="A complete 8086 assembler and loader" +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="glibc-base" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.debath.co.uk/" +WGET_URL="http://homepage.ntlworld.com/robert.debath/dev86/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/usr/share/man/man1 + make PREFIX=/usr && + make PREFIX=$PWD/_pkg/usr MANDIR=$PWD/_pkg/usr/share/man/man1 install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +}