mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
35 lines
726 B
Bash
35 lines
726 B
Bash
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
|
|
|
|
pkgname=libcap-ng
|
|
pkgver=0.7.7
|
|
pkgrel=1
|
|
pkgdesc="A library making programming with POSIX capabilities easier than traditional libcap"
|
|
arch=('x86_64')
|
|
url="http://people.redhat.com/sgrubb/libcap-ng/"
|
|
license=('GPL2' 'LGPL2.1')
|
|
depends=('glibc')
|
|
source=(http://people.redhat.com/sgrubb/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('3d7d126b29e2869a0257c17c8b0d9b2e')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-static=no --with-python=no
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|