wok annotate libnetfilter_queue/receipt @ rev 10929

Up: tazpkg to 4.7.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Aug 18 22:21:30 2011 +0000 (2011-08-18)
parents f6ab11a960e4
children b7319995b37e
rev   line source
pascal@9984 1 # SliTaz package receipt.
pascal@9984 2
pascal@9984 3 PACKAGE="libnetfilter_queue"
pascal@9984 4 VERSION="1.0.0"
pascal@9984 5 CATEGORY="network"
pascal@9984 6 SHORT_DESC="API to packets that have been queued by the kernel packet filter."
pascal@9984 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@9984 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@9984 9 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
pascal@9984 10 WGET_URL="${WEB_SITE}files/$TARBALL"
pascal@9984 11 DEPENDS="libnfnetlink"
slaxemulator@10661 12 BUILD_DEPENDS="libnfnetlink-dev"
pascal@9984 13
pascal@9984 14 # Rules to configure and make the package.
pascal@9984 15 compile_rules()
pascal@9984 16 {
pascal@9984 17 cd $src
pascal@9984 18 ./configure --prefix=/usr &&
pascal@9984 19 make &&
pascal@9984 20 make DESTDIR=$DESTDIR install
pascal@9984 21 }
pascal@9984 22
pascal@9984 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9984 24 genpkg_rules()
pascal@9984 25 {
pascal@9984 26 mkdir -p $fs/usr/lib
pascal@9984 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@9984 28 }