# Description: Library for Linux Kernel's syscall filtering mechanism
# URL: https://github.com/seccomp/libseccomp
# Maintainer: Tim Biermann, tbier at posteo dot de

name=libseccomp
version=2.6.0
release=1
source=(https://github.com/seccomp/libseccomp/archive/v${version}/libseccomp-${version}.tar.gz)

build() {
  cd $name-$version

  ./autogen.sh
  ./configure --prefix=/usr

  make
  make DESTDIR=$PKG install
}
