wok view conntrack-tools/receipt @ rev 19747

xfce-utils: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 18 18:41:09 2017 +0100 (2017-02-18)
parents
children 02f84d387161
line source
1 # SliTaz package receipt.
3 PACKAGE="conntrack-tools"
4 VERSION="1.4.2"
5 CATEGORY="security"
6 SHORT_DESC="userspace tools to interact with the Connection Tracking System."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://$PACKAGE.netfilter.org/"
11 WGET_URL="http://www.netfilter.org/projects/$PACKAGE/files/$TARBALL"
13 DEPENDS="libnfnetlink libnetfilter_conntrack libnetfilter_queue \
14 libnetfilter_cthelper libmnl"
15 BUILD_DEPENDS="glib-dev libnfnetlink-dev libmnl-dev libnetfilter_conntrack-dev \
16 libnetfilter_cttimeout-dev libnetfilter_cthelper-dev libnetfilter_queue-dev \
17 bison flex pkg-config"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/sbin $fs/sbin
34 cp -a $install/usr/lib $fs/usr
35 }