diff options
author | root <root@rshg054.dnsready.net> | 2013-08-29 03:06:29 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-29 03:06:29 -0700 |
commit | 0a2b1eeb31400e539041c83cc1a5952f1c880917 (patch) | |
tree | e957f8274799baeebffbefd8182fa1e7f106979f /community/jnettop | |
parent | d4e7f77644a42f66c76c525abf0bd5d47c6431eb (diff) |
Thu Aug 29 03:04:08 PDT 2013
Diffstat (limited to 'community/jnettop')
-rw-r--r-- | community/jnettop/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/jnettop/PKGBUILD b/community/jnettop/PKGBUILD new file mode 100644 index 000000000..2c006554d --- /dev/null +++ b/community/jnettop/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 96415 2013-08-28 09:24:47Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com +# Contributor: Paul Bredbury <brebs@sent.com> + +pkgname=jnettop +pkgver=0.13.0 +pkgrel=4 +pkgdesc="A top-like console network traffic visualizer" +arch=(i686 x86_64) +url="http://jnettop.kubs.info/wiki/" +license=('GPL') +depends=('libpcap' 'glib2') +makedepends=('pkgconfig') +source=("http://jnettop.kubs.info/dist/$pkgname-$pkgver.tar.gz") +md5sums=('9529d75011026b3fcaf185b2fb063881') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |