wok view bin86/receipt @ rev 8974

[q-z]*: use veriable
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 02 11:06:20 2011 +0100 (2011-03-02)
parents bf7f160ddd1d
children 4c16797dce28
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 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.debath.co.uk/"
11 WGET_URL="http://www.debath.co.uk/dev86/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/usr/share/man/man1
18 make PREFIX=/usr &&
19 make PREFIX=$PWD/_pkg/usr MANDIR=$PWD/_pkg/usr/share/man/man1 install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 }