80 lines
2.3 KiB
Bash
80 lines
2.3 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Christian Hesse <mail@eworm.de>
|
|
# Maintainer: T.J. Townsend <blakkheim@archlinux.org>
|
|
# Contributor: Angel Velasquez <angvp@archlinux.org>
|
|
# Contributor: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
pkgname=htop
|
|
pkgver=3.3.0
|
|
pkgrel=3
|
|
pkgdesc='Interactive process viewer'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url='https://htop.dev/'
|
|
license=('GPL')
|
|
depends=('libcap' 'libcap.so' 'libnl' 'ncurses' 'libncursesw.so')
|
|
makedepends=('git' 'lm_sensors')
|
|
optdepends=('lm_sensors: show cpu temperatures'
|
|
'lsof: show files opened by a process'
|
|
'strace: attach to a running process')
|
|
options=('!emptydirs')
|
|
validpgpkeys=('F7ABE8761E6FE68638E6283AFE0842EE36DD8C0C' # Nathan Scott <nathans@debian.org>
|
|
'0D316B6ABE022C7798D0324BF1D35CB9E8E12EAD') # Benny Baumann <BenBE@geshi.org>
|
|
source=("git+https://github.com/htop-dev/htop.git#tag=${pkgver}")
|
|
sha256sums=('a894206ecef4b690b97813d7b1626c98bacc9c82129b372d84680da8f6225761')
|
|
|
|
_backports=(
|
|
# Fix the display of number of running tasks
|
|
'b6b9384678fa111d47a8d3074c31490863619d12'
|
|
# Undo too-aggressive code collapsing from tree mode refactoring
|
|
'5d778eaacc78c69d5597b57afb4f98062d8856ef'
|
|
# Clicking on column headers needs to also update the sort direction arrow
|
|
'91990b1a34927a4136a85e4ff9adcdbfa500286a'
|
|
# Disable basename matching for kernel threads
|
|
'71b099a8df9e8c2bf4361a9a93bebc409f513460'
|
|
)
|
|
|
|
_reverts=(
|
|
)
|
|
|
|
prepare() {
|
|
cd "${pkgname}"
|
|
|
|
local _c _l
|
|
for _c in "${_backports[@]}"; do
|
|
if [[ "${_c}" == *..* ]]; then _l='--reverse'; else _l='--max-count=1'; fi
|
|
git log --oneline "${_l}" "${_c}"
|
|
git cherry-pick --mainline 1 --no-commit "${_c}"
|
|
done
|
|
for _c in "${_reverts[@]}"; do
|
|
if [[ "${_c}" == *..* ]]; then _l='--reverse'; else _l='--max-count=1'; fi
|
|
git log --oneline "${_l}" "${_c}"
|
|
git revert --mainline 1 --no-commit "${_c}"
|
|
done
|
|
|
|
autoreconf -fi
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-affinity \
|
|
--enable-capabilities \
|
|
--enable-delayacct \
|
|
--enable-openvz \
|
|
--enable-sensors \
|
|
--enable-unicode \
|
|
--enable-vserver
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|