wok annotate dev86/receipt @ rev 10501

Add eeze: E17 udev api
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 25 14:07:19 2011 +0200 (2011-05-25)
parents 8290ff5b0d6b
children f7460b4117e7
rev   line source
pascal@1720 1 # SliTaz package receipt.
pascal@1720 2
pascal@1720 3 PACKAGE="dev86"
gokhlayeh@7965 4 VERSION="0.16.18"
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
gokhlayeh@7965 20 echo q | make -j 1 PREFIX=/usr &&
gokhlayeh@7965 21 make -j 1 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