Date: Friday, September 2, 2011 @ 19:56:22 Author: ibiru Revision: 136924
initial commit, needed by gnome-keyring Added: libcap-ng/ libcap-ng/trunk/ libcap-ng/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: libcap-ng/trunk/PKGBUILD =================================================================== --- libcap-ng/trunk/PKGBUILD (rev 0) +++ libcap-ng/trunk/PKGBUILD 2011-09-02 23:56:22 UTC (rev 136924) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Ionut Biru <[email protected]> +# Contributor: Gerardo Exequiel Pozzi <[email protected]> + +pkgname=libcap-ng +pkgver=0.6.6 +pkgrel=1 +pkgdesc="A library intended to make programming with POSIX capabilities much easier than the traditional libcap" +arch=('i686' 'x86_64') +url="http://people.redhat.com/sgrubb/libcap-ng/" +license=('GPL2' 'LGPL2.1') +depends=('glibc') +options=('!libtool') +source=(http://people.redhat.com/sgrubb/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('eb71f967cecb44b4342baac98ef8cb0f') + +build() { + cd $srcdir/$pkgname-$pkgver + + ./configure --prefix=/usr --enable-static=no --with-python=no + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install +} + +# vim:set ts=2 sw=2 et: Property changes on: libcap-ng/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
