diff options
author | davidovski <david@davidovski.xyz> | 2022-05-18 23:40:38 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-18 23:40:38 +0100 |
commit | 0b977787374349328a21af0deade30d534cf3978 (patch) | |
tree | 3c2be28ef9a6f74a36f21cd48a34cb06b3080960 /repo/xi/xiutils | |
parent | dccab9b94dcfc5e040647210ba22b9cc4bddc742 (diff) |
fixed gcc loader/linker errors
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 +} |