PKGBUILDs/community/iotop/PKGBUILD

22 lines
655 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=iotop
pkgver=0.3.1
pkgrel=1
pkgdesc="Python program with a top like UI used to show of behalf of which process is the I/O going on."
arch=('i686' 'x86_64')
url="http://guichaz.free.fr/iotop/"
license=('GPL')
depends=('python')
conflicts=('iotop-git')
source=(http://guichaz.free.fr/$pkgname/files/$pkgname-$pkgver.tar.bz2)
md5sums=('b7d2cefa4d38bc36f394eaf3b32adb95')
build() {
cd ${srcdir}/$pkgname-$pkgver
python setup.py install --root=${pkgdir} || return 1
}