wok view libnfnetlink/receipt @ rev 17244

lxqt-themes: add patch
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Oct 18 21:57:38 2014 +0200 (2014-10-18)
parents b7319995b37e
children 93d83d6b247d
line source
1 # SliTaz package receipt.
3 PACKAGE="libnfnetlink"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="Low-level library for netfilter related kernel/userspace communication."
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }