wok view libnfnetlink/receipt @ rev 20744

updated bird (1.3.6 -> 2.0.3)
author Hans-G?nter Theisgen
date Sun Feb 10 10:13:37 2019 +0100 (2019-02-10)
parents 8d6f480bf664
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="libnfnetlink"
4 VERSION="1.0.1"
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 ./configure --prefix=/usr $CONFIGURE_ARGS &&
17 make &&
18 make DESTDIR=$DESTDIR install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 }