diff options
Diffstat (limited to 'community/glances')
-rw-r--r-- | community/glances/APKBUILD | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/community/glances/APKBUILD b/community/glances/APKBUILD index b8a6673700..bbb0a5e49f 100644 --- a/community/glances/APKBUILD +++ b/community/glances/APKBUILD @@ -9,25 +9,20 @@ pkgdesc="A CLI curses based monitoring tool" url="http://nicolargo.github.com/glances/" arch="noarch" license="LGPL-3.0-or-later" -depends="py3-psutil py3-bottle py3-snmp py3-batinfo docker-py py3-setuptools" -makedepends="python3-dev py3-setuptools" +depends="py3-psutil py3-bottle py3-snmp py3-batinfo docker-py" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/nicolargo/$pkgname/archive/v$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" options="!check" # tests fail on builder infra due to env. limitations build() { - cd "$builddir" python3 setup.py build } check() { - cd "$builddir" python3 unitest.py } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" # Remove images and HTML doc depending on those |