summaryrefslogtreecommitdiff
path: root/repo/util
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util')
-rw-r--r--repo/util/iftop.xibuild23
-rw-r--r--repo/util/iwd.xibuild35
-rw-r--r--repo/util/tmux.xibuild31
3 files changed, 89 insertions, 0 deletions
diff --git a/repo/util/iftop.xibuild b/repo/util/iftop.xibuild
new file mode 100644
index 0000000..aade527
--- /dev/null
+++ b/repo/util/iftop.xibuild
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+NAME="iftop"
+DESC="A tool to display bandwidth usage on an interface"
+
+MAKEDEPS="make "
+DEPS="libpcap musl "
+
+PKG_VER=0.17
+SOURCE="https://www.ex-parrot.com/~pdw/iftop/download/iftop-$PKG_VER.tar.gz"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}
diff --git a/repo/util/iwd.xibuild b/repo/util/iwd.xibuild
new file mode 100644
index 0000000..05e10ee
--- /dev/null
+++ b/repo/util/iwd.xibuild
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+NAME="iwd"
+DESC="Internet Wireless Daemon"
+
+MAKEDEPS="make "
+DEPS="dbus musl readline "
+
+PKG_VER=1.27
+SOURCE="https://mirrors.edge.kernel.org/pub/linux/network/wireless/iwd-$PKG_VER.tar.gz"
+ADDITIONAL="iwd.initd iwd.confd main.conf"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static \
+ --disable-systemd-service \
+ --enable-wired \
+ --enable-tools
+
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+ install -m750 -d "$PKG_DEST"/var/lib/iwd
+
+ install -m644 -D main.conf "$PKG_DEST"/etc/iwd/main.conf
+
+ install -m755 -D iwd.initd "$PKG_DEST"/etc/init.d/iwd
+ install -m644 -D iwd.confd "$PKG_DEST"/etc/conf.d/iwd
+
+}
diff --git a/repo/util/tmux.xibuild b/repo/util/tmux.xibuild
new file mode 100644
index 0000000..bbb42e1
--- /dev/null
+++ b/repo/util/tmux.xibuild
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+NAME="tmux"
+DESC="Tool to control multiple terminals from a single terminal"
+
+MAKEDEPS="make "
+DEPS="libevent musl ncurses "
+
+PKG_VER=3.2a
+SOURCE="https://github.com/tmux/tmux/releases/download/$PKG_VER/tmux-$PKG_VER.tar.gz"
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+
+ install -D -m644 example_tmux.conf \
+ "$PKG_DEST"/usr/share/doc/tmux/examples/tmux.conf
+
+ for file in CHANGES README; do
+ install -m644 "$file" "$PKG_DEST"/usr/share/doc/tmux/
+ done
+
+}