updated on Sat Jan 21 04:00:54 UTC 2012
[aur-mirror.git] / libcap-ng / PKGBUILD
blob5e4871294c2fccfb783db3795c8977fcec5d9aec
1 # Maintainer: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
3 pkgname=libcap-ng
4 pkgver=0.6.6
5 pkgrel=1
6 pkgdesc="A library intended to make programming with POSIX capabilities much easier than the traditional libcap"
7 arch=('i686' 'x86_64')
8 url="http://people.redhat.com/sgrubb/libcap-ng/"
9 license=('GPL2' 'LGPL2.1')
10 depends=('glibc')
11 options=('!libtool')
12 changelog='ChangeLog'
13 source=(http://people.redhat.com/sgrubb/$pkgname/$pkgname-$pkgver.tar.gz)
14 md5sums=('eb71f967cecb44b4342baac98ef8cb0f')
16 build() {
17   cd $srcdir/$pkgname-$pkgver
19   ./configure --prefix=/usr --enable-static=no
20   make
23 package() {
24   cd $srcdir/$pkgname-$pkgver
26   make DESTDIR=$pkgdir install
29 # vim:set ts=2 sw=2 et: