wok view libmnl/receipt @ rev 23156

Up nwipe (0.28) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 17:43:47 2020 +0100 (2020-03-15)
parents 4904e3d374a9
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libmnl"
4 VERSION="1.0.4"
5 CATEGORY="network"
6 SHORT_DESC="A minimalistic user-space library oriented to Netlink developers."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://www.netfilter.org/projects/$PACKAGE/index.html"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://www.netfilter.org/projects/$PACKAGE/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make -j 1 &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/lib* $fs/usr/lib/
27 }