htop-full: new ptrcport
This commit is contained in:
parent
da9d43373e
commit
b8aab955c5
1 changed files with 51 additions and 0 deletions
51
htop-full/APKBUILD
Normal file
51
htop-full/APKBUILD
Normal file
|
@ -0,0 +1,51 @@
|
|||
# Maintainer: psykose <alice@ayaya.dev>
|
||||
pkgname=htop-full
|
||||
pkgver=3.2.0
|
||||
pkgrel=0
|
||||
pkgdesc="Interactive process viewer"
|
||||
url="https://htop.dev/"
|
||||
arch="all"
|
||||
license="GPL-2.0-or-later"
|
||||
makedepends="
|
||||
autoconf
|
||||
automake
|
||||
hwloc-dev
|
||||
libcap-dev
|
||||
libnl3-dev
|
||||
linux-headers
|
||||
lm-sensors-dev
|
||||
ncurses-dev
|
||||
python3
|
||||
"
|
||||
subpackages="$pkgname-doc"
|
||||
options="!check" # no upstream/available test-suite
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/htop-dev/htop/archive/$pkgver.tar.gz"
|
||||
builddir="$srcdir/htop-$pkgver"
|
||||
|
||||
prepare() {
|
||||
default_prepare
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
}
|
||||
|
||||
build() {
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/share/man \
|
||||
--localstatedir=/var \
|
||||
--enable-cgroup \
|
||||
--enable-delayacct \
|
||||
--enable-taskstats \
|
||||
--enable-unicode
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
174eaa7333fa60e40f67148560c53125e7aaf46a48e7f3ecfa2daa68553c94b3d076d03320afd479dcee07e739c0ff286a81b67cbc994782c33e798d3ed4605c htop-full-3.2.0.tar.gz
|
||||
"
|
Loading…
Reference in a new issue