wok-stable annotate bind-client/receipt @ rev 10728

Fixed all sourced slitaz-dev-tools receipts. The way cook works is it keeps the .hg folder when downloading mecurial sources. By downloading the $VERSION.tar.bz2 and renaming it $SOURCE-$VERSION.tar.bz2 we don't keep the .hg folder in source tarball. Repos will be backup on source dvd anyway so this does save a little bit of space.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 21:18:14 2011 +0000 (2011-05-28)
parents 0c5896e5e91d
children 97780c765586
rev   line source
pascal@1612 1 # SliTaz package receipt.
pascal@1612 2
pascal@1612 3 PACKAGE="bind-client"
slaxemulator@10709 4 VERSION="9.8.0-P2"
pascal@1612 5 CATEGORY="network"
pascal@1612 6 SHORT_DESC="Domain Name System client."
pascal@1612 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1612 8 WEB_SITE="http://www.isc.org/products/BIND/"
erjo@4436 9 DEPENDS="libbind libcrypto attr libpcap"
pascal@1612 10 WANTED="bind"
pascal@1612 11
pascal@1612 12 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1612 13 genpkg_rules()
pascal@1612 14 {
pascal@1612 15 mkdir -p $fs/usr
pascal@1612 16 cp -a $_pkg/usr/bin $fs/usr
pascal@1612 17 }
pascal@1612 18
pascal@8880 19 # Overlap busybox
pascal@8880 20 pre_install()
pascal@8880 21 {
pascal@8880 22 rm -f $1/usr/bin/nslookup
pascal@8880 23 }
pascal@8880 24
pascal@8880 25 post_remove()
pascal@8880 26 {
slaxemulator@10709 27 ln -s /bin/busybox $1/usr/bin/nslookup
pascal@8880 28 }
pascal@8880 29