123456789101112131415161718 |
- # Description: A monitor of resources like htop, but with more info.
- # URL: https://github.com/aristocratos/btop
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on:
- name=btop
- version=1.4.0
- release=1
- source=(https://github.com/aristocratos/$name/archive/refs/tags/v$version.tar.gz)
- build() {
- cd $name-$version
- make
- make DESTDIR=$PKG PREFIX=/usr install
-
- rm -rf $PKG/usr/share/btop
- }
|