diff options
Diffstat (limited to 'community/nfacct/PKGBUILD')
-rw-r--r-- | community/nfacct/PKGBUILD | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/community/nfacct/PKGBUILD b/community/nfacct/PKGBUILD deleted file mode 100644 index c1041dfa4..000000000 --- a/community/nfacct/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 90530 2013-05-13 00:24:07Z seblu $ -# Maintainer: Sébastien Luttringer -# Contributor: Alessandro Sagratini <ale_sagra@hotmail.com> - -pkgname=nfacct -pkgver=1.0.1 -pkgrel=2 -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 --sbindir=/usr/bin - make -} - -check() { - cd $pkgname-$pkgver - make -k check -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: |