summaryrefslogtreecommitdiff
path: root/community/nload
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/nload
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/nload')
-rw-r--r--community/nload/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/nload/PKGBUILD b/community/nload/PKGBUILD
new file mode 100644
index 000000000..f8cd1d0b6
--- /dev/null
+++ b/community/nload/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 63950 2012-02-07 21:18:01Z seblu $
+# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
+# Contributor: Andreas Hauser <andy-aur@splashground.de>
+
+pkgname=nload
+pkgver=0.7.4
+pkgrel=1
+pkgdesc='Monitors network traffic and bandwidth usage'
+url='http://www.roland-riegel.de/nload'
+license=('GPL2')
+depends=('ncurses')
+arch=('i686' 'x86_64')
+source=("$url/$pkgname-$pkgver.tar.gz")
+md5sums=('3c733c528f244ca5a4f76bf185729c39')
+
+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: