diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/devel/icecream-sundae.xibuild | 2 | ||||
-rw-r--r-- | repo/util/htop.xibuild | 25 | ||||
-rw-r--r-- | repo/util/lm-sensors.xibuild | 27 |
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 +} |