wok annotate dev86/receipt @ rev 5155

lxpanel: add tazctrlbox to config file
author Rohit Joshi <jozee@slitaz.org>
date Wed Mar 24 06:59:27 2010 -0400 (2010-03-24)
parents 6c45f6a1ee90
children 2695888b0f59
rev   line source
pascal@1720 1 # SliTaz package receipt.
pascal@1720 2
pascal@1720 3 PACKAGE="dev86"
pascal@1720 4 VERSION="0.16.17"
pascal@1720 5 CATEGORY="development"
pascal@1720 6 SHORT_DESC="Linux 8086 development environment."
pascal@1720 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1720 8 SOURCE="Dev86src"
pascal@1720 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1720 10 WEB_SITE="http://www.debath.co.uk/"
pascal@1720 11 WGET_URL="${WEB_SITE}$PACKAGE/$TARBALL"
pascal@1720 12
pascal@1720 13 # Rules to configure and make the package.
pascal@1720 14 compile_rules()
pascal@1720 15 {
pascal@1720 16 mv $PACKAGE-$VERSION $src 2> /dev/null
pascal@1720 17 cd $src
pascal@5150 18 # Be busybox compatible
pascal@5150 19 sed -i 's/ | cat -v//' libcompat
pascal@1720 20 echo q | make PREFIX=/usr &&
pascal@1720 21 make DIST=$PWD/_pkg install
pascal@1720 22 }
pascal@1720 23
pascal@1720 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1720 25 genpkg_rules()
pascal@1720 26 {
pascal@1720 27 mkdir -p $fs/usr
pascal@1720 28 cp -a $_pkg/usr/bin $fs/usr
pascal@1720 29 cp -a $_pkg/usr/lib $fs/usr
pascal@1720 30 }
pascal@1720 31