wok view libnetfilter_cttimeout/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="libnetfilter_cttimeout"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="API to the fine-grain connection tracking timeout infrastructure."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
11 WGET_URL="${WEB_SITE}files/$TARBALL"
13 DEPENDS="libmnl"
14 BUILD_DEPENDS="pkg-config glib-dev libmnl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }