mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
670 B
Bash
27 lines
670 B
Bash
pkgname=iotop
|
|
pkgver=0.6
|
|
pkgrel=6
|
|
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=('python3')
|
|
source=(http://guichaz.free.fr/$pkgname/files/$pkgname-$pkgver.tar.bz2)
|
|
sha256sums=('3adea2a24eda49bbbaeb4e6ed2042355b441dbd7161e883067a02bfc8dcef75b')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
# Install binary to /usr/bin
|
|
sed -i '7,13d' setup.py
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
|
|
|
|
#FS#33906 fix
|
|
chmod 644 "${pkgdir}"/usr/share/man/man8/iotop.8
|
|
}
|