diff options
Diffstat (limited to 'repo/xiutils')
-rw-r--r-- | repo/xiutils/hbar.xibuild | 5 | ||||
-rw-r--r-- | repo/xiutils/parseconf.xibuild | 7 | ||||
-rw-r--r-- | repo/xiutils/shtests.xibuild | 7 | ||||
-rw-r--r-- | repo/xiutils/xichroot.xibuild | 8 | ||||
-rw-r--r-- | repo/xiutils/xitui.xibuild | 6 | ||||
-rw-r--r-- | repo/xiutils/xiutils.xibuild | 22 |
6 files changed, 55 insertions, 0 deletions
diff --git a/repo/xiutils/hbar.xibuild b/repo/xiutils/hbar.xibuild new file mode 100644 index 0000000..8e00b6a --- /dev/null +++ b/repo/xiutils/hbar.xibuild @@ -0,0 +1,5 @@ +DESC="Horizontal Loading bar" + +package () { + add_from_main usr/bin/hbar +} diff --git a/repo/xiutils/parseconf.xibuild b/repo/xiutils/parseconf.xibuild new file mode 100644 index 0000000..559cda3 --- /dev/null +++ b/repo/xiutils/parseconf.xibuild @@ -0,0 +1,7 @@ +DESC="Simple config file parser" + +DEPS="sh" + +package () { + add_from_main usr/bin/parseconf +} diff --git a/repo/xiutils/shtests.xibuild b/repo/xiutils/shtests.xibuild new file mode 100644 index 0000000..8f45afe --- /dev/null +++ b/repo/xiutils/shtests.xibuild @@ -0,0 +1,7 @@ +DESC="Simple shell testing suite" + +DEPS="xiutils sh" + +package () { + add_from_main usr/bin/shtests +} diff --git a/repo/xiutils/xichroot.xibuild b/repo/xiutils/xichroot.xibuild new file mode 100644 index 0000000..b39308f --- /dev/null +++ b/repo/xiutils/xichroot.xibuild @@ -0,0 +1,8 @@ +#!/bin/sh + +DEPS="bash" +DESC="A script to aid with chrooting on XiLinux" + +package () { + make DESTDIR=$PKG_DEST install-chroot +} diff --git a/repo/xiutils/xitui.xibuild b/repo/xiutils/xitui.xibuild new file mode 100644 index 0000000..edc7188 --- /dev/null +++ b/repo/xiutils/xitui.xibuild @@ -0,0 +1,6 @@ +DESC="xilinux Text User Interface tools" +DEPS="sh ncurses stty" + +package () { + add_from_main usr/lib/xitui.sh +} diff --git a/repo/xiutils/xiutils.xibuild b/repo/xiutils/xiutils.xibuild new file mode 100644 index 0000000..0c6ee70 --- /dev/null +++ b/repo/xiutils/xiutils.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +MAKEDEPS="make gcc" +DEPS="musl sh" + +PKG_VER=1.5 +SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git +BRANCH="v$PKG_VER" + +DESC="Utilities required by various components of the xilinux system" + +build () { + make +} + +check () { + make check +} + +package () { + make DESTDIR=$PKG_DEST install +} |