Date: Saturday, February 4, 2023 @ 23:02:37
  Author: eworm
Revision: 468194

archrelease: copy trunk to testing-x86_64

Added:
  htop/repos/testing-x86_64/
  htop/repos/testing-x86_64/PKGBUILD
    (from rev 468193, htop/trunk/PKGBUILD)
  htop/repos/testing-x86_64/keys/

----------+
 PKGBUILD |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

Copied: htop/repos/testing-x86_64/PKGBUILD (from rev 468193, 
htop/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2023-02-04 23:02:37 UTC (rev 468194)
@@ -0,0 +1,52 @@
+# Maintainer: Christian Hesse <[email protected]>
+# Maintainer: Angel Velasquez <[email protected]>
+# Contributor: Eric Belanger <[email protected]>
+# Contributor: Daniel J Griffiths <[email protected]>
+
+pkgname=htop
+_tag='4dbd0b5c87f4225495d6e0591a1d7227f120ead1' # git rev-parse ${pkgver}
+pkgver=3.2.2
+pkgrel=1
+pkgdesc='Interactive process viewer'
+arch=('x86_64')
+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 
<[email protected]>
+              '0D316B6ABE022C7798D0324BF1D35CB9E8E12EAD') # Benny Baumann 
<[email protected]>
+source=("git+https://github.com/htop-dev/htop.git#tag=${_tag}?signed";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+
+  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
+}

Reply via email to