summaryrefslogtreecommitdiff
path: root/community/nload/PKGBUILD
blob: 1a5ea0e3db46407074da8b4f10290f42a583c77d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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' 'mips64el')
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: