mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
20 lines
501 B
Bash
20 lines
501 B
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=iotop
|
|
pkgver=0.6
|
|
pkgrel=2
|
|
pkgdesc="Python program with a top like UI used to show of behalf of which process is the I/O going on"
|
|
arch=('any')
|
|
url="http://guichaz.free.fr/iotop/"
|
|
license=('GPL')
|
|
depends=('python')
|
|
changelog=
|
|
source=(http://guichaz.free.fr/$pkgname/files/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('5ef9456b26d7694abf3101a72e1e0d1d')
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
python2 setup.py install --root=${pkgdir}
|
|
}
|