description="A library making programming with POSIX capabilities easier than traditional libcap."
url="http://people.redhat.com/sgrubb/libcap-ng/"

packager="Great-OS Team"
maintainer="Great-OS Team"

name=libcap-ng
version=0.9
release=1

source=(https://github.com/stevegrubb/libcap-ng/archive/v${version}/${name}-${version}.tar.gz)

build() {
  cd $name-$version

  ./autogen.sh
  
  ./configure --prefix=/usr \
              --disable-static \
              --without-python

  make
  make DESTDIR=$PKG install
}
