summaryrefslogtreecommitdiff
path: root/community/libnetfilter_acct/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libnetfilter_acct/PKGBUILD')
-rw-r--r--community/libnetfilter_acct/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/libnetfilter_acct/PKGBUILD b/community/libnetfilter_acct/PKGBUILD
new file mode 100644
index 000000000..3f105d946
--- /dev/null
+++ b/community/libnetfilter_acct/PKGBUILD
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 71613 2012-05-31 08:51:38Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
+# Maintainer: Filip Wojciechowski, filip at loka dot pl
+
+pkgname=libnetfilter_acct
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="userspace library providing interface to extended accounting infrastructure"
+arch=('i686' 'x86_64')
+url="http://www.netfilter.org/projects/libnetfilter_acct/index.html"
+license=('GPL')
+depends=('libnfnetlink' 'libmnl')
+makedepends=('pkgconfig')
+options=('!libtool')
+source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2)
+md5sums=('246e97feb9cf98f7ddf70d71a3813336')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$pkgdir install
+}