wok view libnetfilter_queue/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 4504f2aeb11e
children d0cbcb4841c3
line source
1 # SliTaz package receipt.
3 PACKAGE="libnetfilter_queue"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="API to packets that have been queued by the kernel packet filter."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
10 WGET_URL="${WEB_SITE}files/$TARBALL"
11 DEPENDS="libnfnetlink"
12 BUILD_DEPENDS="libnfnetlink-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }