wok diff libcap-ng/receipt @ rev 11465

seed: add intltool to build_depends
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 17 11:45:19 2011 +0100 (2011-12-17)
parents
children 54d9c01beaff
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libcap-ng/receipt	Sat Dec 17 11:45:19 2011 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libcap-ng"
     1.7 +VERSION="0.6.6"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="New generation libcap library."
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +WEB_SITE="http://people.redhat.com/sgrubb/libcap-ng/"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WGET_URL="http://people.redhat.com/sgrubb/libcap-ng/$TARBALL"
    1.14 +
    1.15 +DEPENDS=""
    1.16 +BUILD_DEPENDS=""
    1.17 +PROVIDE="libcap"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	
    1.24 +	./configure $CONFIGURE_ARGS && make && make install
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr/lib
    1.31 +	
    1.32 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +}