summaryrefslogtreecommitdiff
path: root/community/nload/PKGBUILD
blob: 2abae81eadb66d73a3098bb24401a1370ffcfbd5 (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 114524 2014-07-01 18:55:52Z seblu $
# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Andreas Hauser <andy-aur@splashground.de>

pkgname=nload
pkgver=0.7.4
pkgrel=2
pkgdesc='Monitors network traffic and bandwidth usage'
url='http://www.roland-riegel.de/nload'
license=('GPL2')
depends=('gcc-libs' '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 et: