wok rev 6755
Added bin86. A complete 8086 and loader. Needed to build virtualbox-ose.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Oct 17 19:56:54 2010 +0000 (2010-10-17) |
parents | 54bd24628177 |
children | 328ad128bd21 |
files | bin86/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bin86/receipt Sun Oct 17 19:56:54 2010 +0000 1.3 @@ -0,0 +1,27 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="bin86" 1.7 +VERSION="0.16.17" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="A complete 8086 assembler and loader" 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +DEPENDS="glibc-base" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.debath.co.uk/" 1.14 +WGET_URL="http://homepage.ntlworld.com/robert.debath/dev86/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/usr/share/man/man1 1.21 + make PREFIX=/usr && 1.22 + make PREFIX=$PWD/_pkg/usr MANDIR=$PWD/_pkg/usr/share/man/man1 install 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr 1.29 + cp -a $_pkg/usr/bin $fs/usr 1.30 +}