wok view bin86/receipt @ rev 14739

libgnomecanvasmm, libglademm: fix for the new gtkmm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 14 08:11:47 2013 +0200 (2013-06-14)
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 }