PKGBUILDs/community/iotop/PKGBUILD
2009-10-09 21:15:33 -05:00

21 lines
655 B
Bash

# $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
}