Date: Sunday, January 21, 2018 @ 23:53:18 Author: seblu Revision: 315218
archrelease: copy trunk to testing-x86_64 Added: libnftnl/repos/testing-x86_64/ libnftnl/repos/testing-x86_64/PKGBUILD (from rev 315217, libnftnl/trunk/PKGBUILD) ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Copied: libnftnl/repos/testing-x86_64/PKGBUILD (from rev 315217, libnftnl/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2018-01-21 23:53:18 UTC (rev 315218) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Sébastien Luttringer + +pkgname=libnftnl +pkgver=1.0.9 +pkgrel=1 +pkgdesc='Netfilter library providing interface to the nf_tables subsystem' +arch=('x86_64') +url='https://netfilter.org/projects/libnftnl/' +license=('GPL2') +depends=('libmnl') +validpgpkeys=('C09DB2063F1D7034BA6152ADAB4655A126D292E4') # Netfilter Core Team +# 2016-11-03: https sources download is broken with curl +source=("http://netfilter.org/projects/libnftnl/files/libnftnl-$pkgver.tar.bz2"{,.sig}) +sha1sums=('90b70f52a26f88ab1106671e797faac21265fa6a' + 'SKIP') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: