summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-02-13 13:19:39 +0000
committerdavidovski <david@davidovski.xyz>2022-02-13 13:19:39 +0000
commitabebf431dfa5030a6f60a29b42fff38833311415 (patch)
tree4089fe065965fd87848e5618870ecb4db19fd454
parent488c95cb4f40113626de74702458430aaf4120f5 (diff)
added htop and sensors
-rw-r--r--repo/devel/icecream-sundae.xibuild2
-rw-r--r--repo/util/htop.xibuild25
-rw-r--r--repo/util/lm-sensors.xibuild27
3 files changed, 53 insertions, 1 deletions
diff --git a/repo/devel/icecream-sundae.xibuild b/repo/devel/icecream-sundae.xibuild
index 7915518..b58e241 100644
--- a/repo/devel/icecream-sundae.xibuild
+++ b/repo/devel/icecream-sundae.xibuild
@@ -4,7 +4,7 @@ MAKEDEPS=(meson ninja)
DEPS=(ncurses glib icecream)
PKG_VER=1.0.0
-SOURCE=https://github.com/JPEWdev/icecream-sundae/archive/refs/tags/v$PKG_VER.tar.gz
+SOURCE=https://github.com/JPEWdev/icecream-sundae
DESC="A build distribution service based on distcc"
diff --git a/repo/util/htop.xibuild b/repo/util/htop.xibuild
new file mode 100644
index 0000000..8a14458
--- /dev/null
+++ b/repo/util/htop.xibuild
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+MAKEDEPS=(autoconf autotools make)
+DEPS=(libcap libnl ncurses lm-sensors hwloc)
+
+PKG_VER=3.1.2
+SOURCE=https://github.com/htop-dev/htop/releases/download/$PKG_VER/htop-$PKG_VER.tar.xz
+DESC="Interactive process viewer"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --enable-cgroup \
+ --enable-delayacct \
+ --enable-openvz \
+ --enable-unicode \
+ --enable-vserver \
+ --enable-sensors
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}
diff --git a/repo/util/lm-sensors.xibuild b/repo/util/lm-sensors.xibuild
new file mode 100644
index 0000000..7b424f5
--- /dev/null
+++ b/repo/util/lm-sensors.xibuild
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+MAKEDEPS=(perl)
+DEPS=(which )
+
+DESC="Collection of userspace tools for hardware monitoring"
+
+PKG_VER=3-6-0
+SOURCE=https://github.com/lm-sensors/lm-sensors/archive/refs/tags/V$PKG_VER.tar.gz
+
+build () {
+ make PREFIX=/usr \
+ BUILD_STATIC_LIB=0 \
+ MANDIR=/usr/share/man
+}
+
+
+package () {
+ make DESTDIR=$PKG_DEST \
+ PREFIX=/usr \
+ BUILD_STATIC_LIB=0 \
+ MANDIR=/usr/share/man install &&
+
+ install -v -m755 -d /usr/share/doc/lm_sensors-$PKG_VER &&
+ cp -rv README INSTALL doc/* \
+ /usr/share/doc/lm_sensors-$PKG_VER
+}