wok annotate dev86/receipt @ rev 13033

Add C compiler tags
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 12 18:52:42 2012 +0200 (2012-06-12)
parents f7460b4117e7
children b43c047cc732
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@13033 12 TAGS="compiler C assembler 8086"
pascal@1720 13
pascal@1720 14 # Rules to configure and make the package.
pascal@1720 15 compile_rules()
pascal@1720 16 {
pascal@1720 17 mv $PACKAGE-$VERSION $src 2> /dev/null
pascal@1720 18 cd $src
pascal@5150 19 # Be busybox compatible
pascal@5150 20 sed -i 's/ | cat -v//' libcompat
gokhlayeh@7965 21 echo q | make -j 1 PREFIX=/usr &&
gokhlayeh@7965 22 make -j 1 DIST=$PWD/_pkg install
pascal@1720 23 }
pascal@1720 24
pascal@1720 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1720 26 genpkg_rules()
pascal@1720 27 {
pascal@1720 28 mkdir -p $fs/usr
pascal@1720 29 cp -a $_pkg/usr/bin $fs/usr
pascal@1720 30 cp -a $_pkg/usr/lib $fs/usr
pascal@1720 31 }
pascal@1720 32
pascal@11651 33 # Pre and post install commands for Tazpkg.
pascal@11651 34 post_install()
pascal@11651 35 {
pascal@11651 36 [ -z "$1" -a -f /proc/sys/fs/binfmt_misc/register ] &&
pascal@11651 37 cat > /proc/sys/fs/binfmt_misc/register <<EOT
pascal@11651 38 :i86-elks:M::\x01\x03\x20\x00:\xff\xff\xff\x83:/usr/bin/elksemu:
pascal@11651 39 EOT
pascal@11651 40 }
pascal@11651 41