summaryrefslogtreecommitdiff
path: root/testing/libcap-ng
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-08-14 00:02:20 +0000
committerroot <root@rshg054.dnsready.net>2012-08-14 00:02:20 +0000
commita36c4a33891932acf2ac1cdebbb9caed01d7df6f (patch)
tree43ba215e412fc3ce04b316dd929467bfac0c8078 /testing/libcap-ng
parent07a52495b8a64f14843878d6116151fbdb6deefb (diff)
Tue Aug 14 00:02:20 UTC 2012
Diffstat (limited to 'testing/libcap-ng')
-rw-r--r--testing/libcap-ng/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/libcap-ng/PKGBUILD b/testing/libcap-ng/PKGBUILD
new file mode 100644
index 000000000..e67e9ee4a
--- /dev/null
+++ b/testing/libcap-ng/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 165202 2012-08-12 20:44:32Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
+
+pkgname=libcap-ng
+pkgver=0.7
+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=('85c14a2442a3721383a1e2284e254846')
+
+build() {
+ cd $pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-static=no --with-python=no
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et: