summaryrefslogtreecommitdiff
path: root/xibuilds/bash.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'xibuilds/bash.xibuild')
-rw-r--r--xibuilds/bash.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/xibuilds/bash.xibuild b/xibuilds/bash.xibuild
new file mode 100644
index 0000000..b2a0156
--- /dev/null
+++ b/xibuilds/bash.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(readline glibc ncurses)
+
+SOURCE=https://git.savannah.gnu.org/git/bash.git
+
+build () {
+ ./configure --without-bash-malloc --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}
+