wok annotate 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
rev   line source
pascal@9983 1 # SliTaz package receipt.
pascal@9983 2
pascal@9983 3 PACKAGE="libnfnetlink"
pascal@9983 4 VERSION="1.0.0"
pascal@9983 5 CATEGORY="network"
pascal@9983 6 SHORT_DESC="Low-level library for netfilter related kernel/userspace communication."
pascal@9983 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15482 8 LICENSE="GPL2"
pascal@9983 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@9983 10 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
pascal@9983 11 WGET_URL="${WEB_SITE}files/$TARBALL"
pascal@9983 12
pascal@9983 13 # Rules to configure and make the package.
pascal@9983 14 compile_rules()
pascal@9983 15 {
pascal@9983 16 cd $src
gokhlayeh@11573 17 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@9983 18 make &&
pascal@9983 19 make DESTDIR=$DESTDIR install
pascal@9983 20 }
pascal@9983 21
pascal@9983 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9983 23 genpkg_rules()
pascal@9983 24 {
pascal@9983 25 mkdir -p $fs/usr/lib
pascal@15482 26 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@9983 27 }