wok view libcap-ng/receipt @ rev 20215

virtualbox-ose: force host arch to i486
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 24 16:34:05 2018 +0100 (2018-02-24)
parents 54d9c01beaff
children 43187d86cff3
line source
1 # SliTaz package receipt.
3 PACKAGE="libcap-ng"
4 VERSION="0.6.6"
5 CATEGORY="security"
6 SHORT_DESC="New generation libcap library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="http://people.redhat.com/sgrubb/libcap-ng/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://people.redhat.com/sgrubb/libcap-ng/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="python"
15 PROVIDE="libcap"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 }