diff options
Diffstat (limited to 'community/nload')
-rw-r--r-- | community/nload/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/nload/PKGBUILD b/community/nload/PKGBUILD new file mode 100644 index 000000000..2518e64ee --- /dev/null +++ b/community/nload/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net +# Contributor: Andreas Hauser <andy-aur@splashground.de> + +pkgname=nload +pkgver=0.7.3 +pkgrel=2 +pkgdesc='Console application which monitors network traffic and bandwidth usage in real time' +url='http://www.roland-riegel.de/nload' +license=('GPL2') +depends=('ncurses' 'gcc-libs') +arch=('i686' 'x86_64') +source=("$url/$pkgname-$pkgver.tar.gz") +md5sums=('9b97c37fe1474f1da42f265fead24081') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 ft=sh et: |