summaryrefslogtreecommitdiff
path: root/community/nload/PKGBUILD
blob: e40319451ba8dcc43f65422f63e066666506fc50 (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
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.1
pkgdesc='Monitors network traffic and bandwidth usage'
url='http://www.roland-riegel.de/nload'
license=('GPL2')
depends=('ncurses')
arch=('i686' 'x86_64' 'mips64el')
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: