wok view libcap-ng/receipt @ rev 23649

Up openvpn (2.4.9)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 20 13:31:36 2020 +0000 (2020-04-20)
parents 6c3718ca17b6
children 453c249b6219
line source
1 # SliTaz package receipt.
3 PACKAGE="libcap-ng"
4 VERSION="0.7.9"
5 CATEGORY="security"
6 SHORT_DESC="New generation libcap library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://people.redhat.com/sgrubb/libcap-ng/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="python"
16 PROVIDE="libcap"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make -j 1 &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 }