mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
19 lines
533 B
Bash
19 lines
533 B
Bash
|
# Contributor: Mark Rosenstand <mark@borkware.net>
|
||
|
arch=(i686 x86_64)
|
||
|
pkgname=bwbar
|
||
|
pkgver=1.2.3
|
||
|
pkgrel=1
|
||
|
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
|
||
|
}
|