summaryrefslogtreecommitdiff
path: root/community/libnfnetlink/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libnfnetlink/PKGBUILD')
-rw-r--r--community/libnfnetlink/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/libnfnetlink/PKGBUILD b/community/libnfnetlink/PKGBUILD
new file mode 100644
index 000000000..1d984263b
--- /dev/null
+++ b/community/libnfnetlink/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 55539 2011-09-14 08:04:26Z andrea $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
+# Contributor: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnfnetlink
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="low-level library for netfilter related kernel/userspace communication"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.netfilter.org/projects/libnfnetlink/index.html"
+license=('GPL')
+depends=('glibc')
+options=('!libtool')
+source=("http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2")
+md5sums=('016fdec8389242615024c529acc1adb8')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ make DESTDIR="${pkgdir}" install
+}