1
0
forked from ports/opt

htop: update to 3.0.2

This commit is contained in:
Juergen Daubert 2020-09-26 18:27:21 +02:00
parent fdf3604a01
commit 489ad453f3
3 changed files with 20 additions and 19 deletions

View File

@ -2,6 +2,10 @@ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/htop
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/htop.desktop
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/htop.1.gz
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/htop.png

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/fFmmgJmleMoOwpj2D+cK29aJaxHa+uBFwZuJwPF96r0S1jPyn7aCQ9obnW+WqGfkK19mJAp68Y7UvU2jAvLxgY=
SHA256 (Pkgfile) = e305c315a91f0e6509ede0b763cb5a57154477c3087716ee46374ee1408ffca6
SHA256 (.footprint) = f11cf3a232e1f7885985d2d8ee00b4dbfbd263941e45f11afb4c6c56829b148f
SHA256 (htop-2.2.0.tar.gz) = d9d6826f10ce3887950d709b53ee1d8c1849a70fa38e91d5896ad8cbc6ba3c57
RWSE3ohX2g5d/YSq8ctC4ZPn14QD/J8f2mrXdEOBgLpeRJ1wcEFEuIPxhVUjAQGFa6RQitxA36E6yNHga1+SasfS8zorxd5fKAA=
SHA256 (Pkgfile) = 760c0c03da6d14430b1abcee07bb308656ede052c9d6895507afb7067b04a216
SHA256 (.footprint) = bfae807b71236669702c9c2039bec568370d96f2c817e4673076a689ddd0feb8
SHA256 (htop-3.0.2.tar.gz) = b4744a3bea279f2a3725ed8e5e35ffd9cb10d66673bf07c8fe21feb3c4661305

View File

@ -1,20 +1,17 @@
# Description: An interactive process viewer
# URL: http://hisham.hm/htop
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: ncurses python3
# Description: An interactive process viewer
# URL: https://github.com/htop-dev/htop
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: ncurses
name=htop
version=2.2.0
release=2
source=(https://hisham.hm/htop/releases/$version/htop-$version.tar.gz)
version=3.0.2
release=1
source=(https://github.com/htop-dev/htop/archive/$version/htop-$version.tar.gz)
build() {
cd $name-$version
sed -i -e 's/python/python3/g' scripts/MakeHeader.py
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{include,lib}
rm -rf $PKG/usr/share/{applications,pixmaps}
cd $name-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}