From 1176f76f8307edbd6d5a8322651d9c30ab487ee2 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Fri, 23 Apr 2021 19:58:22 +0200 Subject: [PATCH] Add htop recipe --- recipes/htop/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 recipes/htop/Makefile diff --git a/recipes/htop/Makefile b/recipes/htop/Makefile new file mode 100644 index 0000000..6d5bea3 --- /dev/null +++ b/recipes/htop/Makefile @@ -0,0 +1,24 @@ +# Contributor: Sören Tempel +# Maintainer: Carlo Landmeter +name = htop +version = 3.0.5 +release = 0 +pkgdesc = "Interactive process viewer" +url = "https://htop.dev/" +arch = "all" +license = "GPL-2.0-or-later" +build-dependencies = ncurses-dev python3 autoconf automake linux-headers +options = "!check" # no upstream/available test-suite +URL = https://github.com/htop-dev/htop/archive/$(version).tar.gz + +CONFIGURE_OPTIONS_USER = --sysconfdir=/etc \ + --mandir=$(MANDIR) \ + --localstatedir=/var \ + --enable-cgroup \ + --enable-taskstats + +SYSCONF ?= ../../ +include $(SYSCONF)/package.mk + +pre_configure: + cd $(bdir) ; ./autogen.sh