mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
533 B
Bash
18 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
|
|
}
|