wok view bin86/receipt @ rev 18039

Up: cookutils, cookutils-daemon (735): fix cookiso
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon May 11 05:02:19 2015 +0300 (2015-05-11)
parents 4c16797dce28
children e8b62ae1b3eb
line source
1 # SliTaz package receipt.
3 PACKAGE="bin86"
4 VERSION="0.16.18"
5 CATEGORY="development"
6 SHORT_DESC="A complete 8086 assembler and loader"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.debath.co.uk/"
11 WGET_URL="http://www.debath.co.uk/dev86/$TARBALL"
12 TAGS="assembler 8086"
14 DEPENDS="glibc-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir -p $DESTDIR/usr/bin $DESTDIR/usr/share/man/man1
21 make PREFIX=/usr &&
22 make PREFIX=$DESTDIR/usr MANDIR=$DESTDIR/usr/share/man/man1 install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }