diff options
Diffstat (limited to 'community/netwatch/PKGBUILD')
-rw-r--r-- | community/netwatch/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/netwatch/PKGBUILD b/community/netwatch/PKGBUILD new file mode 100644 index 000000000..8078c2af7 --- /dev/null +++ b/community/netwatch/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 17608 2010-05-24 15:34:28Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=netwatch +pkgver=1.3.0 +pkgrel=2 +pkgdesc="monitor network connections" +arch=(i686 x86_64) +url="http://www.slctech.org/~mackay/NETWATCH/netwatch.html" +license=('GPL') +options=(zipman) +depends=(ncurses) +source=(http://www.slctech.org/~mackay/NETWATCH/netwatch-$pkgver-1.tgz) +md5sums=('9168c20c1984e9d126d1a0ec1eb0c1d3') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make || return 1 + + install -D -m0755 netwatch $pkgdir/usr/bin/netwatch && \ + install -D -m0755 netresolv $pkgdir/usr/bin/netresolv && \ + install -D -m0644 netwatch.1 $pkgdir/usr/share/man/man1/netwatch.1 +} |