diff options
Diffstat (limited to 'repo/xi/xiutils')
-rw-r--r-- | repo/xi/xiutils/hbar.xibuild | 5 | ||||
-rw-r--r-- | repo/xi/xiutils/parseconf.xibuild | 7 | ||||
-rw-r--r-- | repo/xi/xiutils/shtests.xibuild | 7 | ||||
-rw-r--r-- | repo/xi/xiutils/xichroot.xibuild | 8 | ||||
-rw-r--r-- | repo/xi/xiutils/xitui.xibuild | 6 |
5 files changed, 33 insertions, 0 deletions
diff --git a/repo/xi/xiutils/hbar.xibuild b/repo/xi/xiutils/hbar.xibuild new file mode 100644 index 0000000..8e00b6a --- /dev/null +++ b/repo/xi/xiutils/hbar.xibuild @@ -0,0 +1,5 @@ +DESC="Horizontal Loading bar" + +package () { + add_from_main usr/bin/hbar +} diff --git a/repo/xi/xiutils/parseconf.xibuild b/repo/xi/xiutils/parseconf.xibuild new file mode 100644 index 0000000..559cda3 --- /dev/null +++ b/repo/xi/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/xi/xiutils/shtests.xibuild b/repo/xi/xiutils/shtests.xibuild new file mode 100644 index 0000000..8f45afe --- /dev/null +++ b/repo/xi/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/xi/xiutils/xichroot.xibuild b/repo/xi/xiutils/xichroot.xibuild new file mode 100644 index 0000000..b39308f --- /dev/null +++ b/repo/xi/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/xi/xiutils/xitui.xibuild b/repo/xi/xiutils/xitui.xibuild new file mode 100644 index 0000000..edc7188 --- /dev/null +++ b/repo/xi/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 +} |