summaryrefslogtreecommitdiff
path: root/community/nfacct/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/nfacct/PKGBUILD')
-rw-r--r--community/nfacct/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/nfacct/PKGBUILD b/community/nfacct/PKGBUILD
new file mode 100644
index 000000000..98cacbdfe
--- /dev/null
+++ b/community/nfacct/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 85684 2013-03-04 23:04:09Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Alessandro Sagratini <ale_sagra@hotmail.com>
+
+pkgname=nfacct
+pkgver=1.0.1
+pkgrel=1
+pkgdesc='Command line tool to create/retrieve/delete accounting objects'
+arch=('i686' 'x86_64')
+url='http://www.netfilter.org/projects/nfacct/'
+license=('GPL2')
+depends=('libnetfilter_acct')
+options=(!libtool)
+source=("http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2")
+md5sums=('992e863409d144350dbc8f0554a0f478')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make -k check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et: