diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libnfnetlink/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libnfnetlink/PKGBUILD')
-rw-r--r-- | community/libnfnetlink/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/libnfnetlink/PKGBUILD b/community/libnfnetlink/PKGBUILD new file mode 100644 index 000000000..17e77c144 --- /dev/null +++ b/community/libnfnetlink/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 191 2009-07-20 09:12:55Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Kevin Edmonds <edmondskevin@hotmail.com> +# Maintainer: Filip Wojciechowski, filip at loka dot pl +pkgname=libnfnetlink +pkgver=1.0.0 +pkgrel=1 +pkgdesc="low-level library for netfilter related kernel/userspace communication" +depends=(glibc) +url="http://www.netfilter.org/projects/libnfnetlink/index.html" +license=('GPL') +arch=('i686' 'x86_64') +options=('!libtool') +source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2) +md5sums=('016fdec8389242615024c529acc1adb8') + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |