blob: ee73fab6e17138f57bfe8f4e8d3278be5a338845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Contributor: Mark Rosenstand <mark@borkware.net>
pkgname=bwbar
pkgver=1.2.3
pkgrel=2
arch=(i686 x86_64 'mips64el')
pkgdesc="Generates text and graphical readout of the current bandwidth usage."
url="http://www.kernel.org/pub/software/web/bwbar/"
license=("GPL")
depends=('libpng')
source=(http://www.kernel.org/pub/software/web/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('766265ddf0615b552ff19d12f78be719')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure
make || return 1
install -D -m755 bwbar $startdir/pkg/usr/bin/bwbar
}
|