summaryrefslogtreecommitdiff
path: root/xibuilds
diff options
context:
space:
mode:
Diffstat (limited to 'xibuilds')
-rw-r--r--xibuilds/bash.xibuild17
1 files changed, 17 insertions, 0 deletions
diff --git a/xibuilds/bash.xibuild b/xibuilds/bash.xibuild
new file mode 100644
index 0000000..efa9c19
--- /dev/null
+++ b/xibuilds/bash.xibuild
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+fetch () {
+ git clone https://git.savannah.gnu.org/git/bash.git
+}
+
+build () {
+ cd bash
+ ./configure --without-bash-malloc --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}
+
+package () {
+ echo "packaged"
+}
+