diff options
author | root <root@rshg054.dnsready.net> | 2011-12-06 23:14:44 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-06 23:14:44 +0000 |
commit | d1d87d2ac643e3dabc251f3cec7d3b00e29b282c (patch) | |
tree | 09d9025934fe06bd25753f98cf2eab3140456cc3 /community/iptstate | |
parent | 55d1e19e71b453a0f47c599f281a2ad2644247d2 (diff) |
Tue Dec 6 23:14:44 UTC 2011
Diffstat (limited to 'community/iptstate')
-rw-r--r-- | community/iptstate/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/iptstate/PKGBUILD b/community/iptstate/PKGBUILD new file mode 100644 index 000000000..f0fbb6abe --- /dev/null +++ b/community/iptstate/PKGBUILD @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net> +# Contributor: Andrea Zucchelli <zukka77@gmail.com> + +pkgname=iptstate +pkgver=2.2.3 +pkgrel=1 +pkgdesc='top-like interface to netfilter connection-tracking table' +arch=('i686' 'x86_64') +url='http://www.phildev.net/iptstate/' +license=('custom') +depends=('ncurses' 'libnetfilter_conntrack') +source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2") +md5sums=('5238a0c4c4f764a919aba678051698ec') + +build() { + cd $pkgname-$pkgver + make +} + +package() { + cd $pkgname-$pkgver + install -D -m755 $pkgname "$pkgdir/usr/sbin/$pkgname" + install -D -m644 $pkgname.8 "$pkgdir/usr/share/man/man8/$pkgname.8" + install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} +# vim:set ts=2 sw=2 ft=sh et: |