wok-next view libnfnetlink/receipt @ rev 10800
Add glib-networking (needed for https support in webkit based browser)
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Sat Jun 04 13:55:59 2011 +0200 (2011-06-04) | 
| parents | |
| children | b7319995b37e | 
 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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
     9 WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
    10 WGET_URL="${WEB_SITE}files/$TARBALL"
    12 # Rules to configure and make the package.
    13 compile_rules()
    14 {
    15 	cd $src
    16 	./configure --prefix=/usr &&
    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 $_pkg/usr/lib/*.so* $fs/usr/lib
    26 }