blob: ec29f99aa6fa2250e484f0afa573958b59ce82c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: jakob <grandchild@gmx.net>
pkgname=nvitop
pkgver=0.6.2
pkgrel=1
pkgdesc="Interactive NVIDIA-GPU process viewer and GPU process management"
arch=(any)
url="https://github.com/XuehaiPan/nvitop"
license=('GPL3')
depends=(
python
python-pynvml
python-psutil
python-cachetools
python-termcolor
ncurses
)
makedepends=('python-setuptools')
source=("https://github.com/XuehaiPan/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('97b99b9d15fc121487a77a8db934cf0aba8b84860bd055bc2bfee3998ab797e4')
package() {
cd "$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|