wok annotate libnetfilter_queue/receipt @ rev 21810
Add python-cffi, python-cparser & python-cryptography
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 17 18:44:53 2019 +0200 (2019-08-17) |
parents | 4904e3d374a9 |
children | 83b97236db32 |
rev | line source |
---|---|
pascal@9984 | 1 # SliTaz package receipt. |
pascal@9984 | 2 |
pascal@9984 | 3 PACKAGE="libnetfilter_queue" |
Hans-G?nter@21263 | 4 VERSION="1.0.3" |
pascal@9984 | 5 CATEGORY="network" |
pascal@9984 | 6 SHORT_DESC="API to packets that have been queued by the kernel packet filter." |
pascal@9984 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14714 | 8 LICENSE="GPL2" |
Hans-G?nter@21263 | 9 WEB_SITE="https://www.netfilter.org/projects/$PACKAGE/" |
Hans-G?nter@21263 | 10 |
pascal@9984 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@9984 | 12 WGET_URL="${WEB_SITE}files/$TARBALL" |
pascal@14714 | 13 |
pascal@9984 | 14 DEPENDS="libnfnetlink" |
Hans-G?nter@21263 | 15 BUILD_DEPENDS="libmnl-dev libnfnetlink-dev" |
pascal@9984 | 16 |
pascal@9984 | 17 # Rules to configure and make the package. |
pascal@9984 | 18 compile_rules() |
pascal@9984 | 19 { |
Hans-G?nter@21263 | 20 ./configure \ |
Hans-G?nter@21263 | 21 --prefix=/usr \ |
samuel_trassare@14144 | 22 $CONFIGURE_ARGS && |
Hans-G?nter@21263 | 23 make -j 1 && |
pascal@9984 | 24 make DESTDIR=$DESTDIR install |
pascal@9984 | 25 } |
pascal@9984 | 26 |
pascal@9984 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@9984 | 28 genpkg_rules() |
pascal@9984 | 29 { |
pascal@9984 | 30 mkdir -p $fs/usr/lib |
samuel_trassare@14142 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@9984 | 32 } |