blob: 3d9bf03c0b5aa562171c29d20916343c0b79d33d (
plain)
1 # Description: An interactive process viewer
2 # URL: https://github.com/htop-dev/htop
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: ncurses
5 # Optional: lm_sensors lsof strace
6
7 name=htop
8 version=3.2.1
9 release=1
10 source=(https://github.com/htop-dev/htop/archive/$version/htop-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./autogen.sh
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|