summaryrefslogtreecommitdiff
path: root/community/iptstate/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
commit8a3d4ee5105eefa2136eb7ae83e69d01f29864c3 (patch)
tree8be9a06d3b2d8cade4b5dba48e040c632bd33850 /community/iptstate/PKGBUILD
parent404b7ff94ece6bb2ce0e9df042ac1fe798137c83 (diff)
parentd1d87d2ac643e3dabc251f3cec7d3b00e29b282c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/zathura/PKGBUILD extra/gnome-desktop-sharp/PKGBUILD extra/gnome-python-desktop/PKGBUILD extra/libdvdread/PKGBUILD extra/mjpegtools/PKGBUILD extra/postgresql/PKGBUILD
Diffstat (limited to 'community/iptstate/PKGBUILD')
-rw-r--r--community/iptstate/PKGBUILD27
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: