wok view bin86/receipt @ rev 13666

ccid: add --enable-twinserial
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 24 11:28:27 2012 +0100 (2012-11-24)
parents 0d9c2c4acb3f
children 223b265f40fd
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"
12 TAGS="assembler 8086"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/usr/share/man/man1
19 make PREFIX=/usr &&
20 make PREFIX=$PWD/_pkg/usr MANDIR=$PWD/_pkg/usr/share/man/man1 install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }