blob: a690792caec6df55f9d4499f840df6fe4c37f1e4 (
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.5.1.4
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=('ad31898b2b393a418330c54137c0ec6b5e2dc1274687de9be6d2760c55cee17b')
package() {
cd "$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|