wok view libnetfilter_cthelper/receipt @ rev 19479

paper-icon-theme: update from git, make package a way smaller (remove HiDPI icons and shrink svg icons)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Nov 01 04:02:18 2016 +0200 (2016-11-01)
parents
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="libnetfilter_cthelper"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="API to the user-space helper infrastructure."
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 DEPENDS="libmnl"
14 BUILD_DEPENDS="pkg-config glib-dev libmnl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }