mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
519 B
Bash
19 lines
519 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff Mickey <j@codemac.net>
|
|
|
|
pkgname=speedometer
|
|
pkgver=2.6
|
|
pkgrel=1
|
|
pkgdesc="Measure and display the rate of data across a network connection or data being stored in a file."
|
|
arch=('i686' 'x86_64')
|
|
url="http://excess.org/speedometer/"
|
|
license=('GPL')
|
|
depends=('python-urwid')
|
|
source=(http://excess.org/$pkgname/$pkgname.py)
|
|
md5sums=('04871f7f1d23a1aedce4361a1f5d6403')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
|
|
install -D -m755 $pkgname.py ${pkgdir}/usr/bin/$pkgname
|
|
}
|