summaryrefslogtreecommitdiff
path: root/xibuilds/bash.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-09-29 20:48:36 +0100
committerdavidovski <david@davidovski.xyz>2021-09-29 20:48:36 +0100
commit5b046bf12ce86157c32c68d6981ffe30796183f4 (patch)
tree73486b1a5f4bc2e986a65780b4bd856c4366aa4d /xibuilds/bash.xibuild
added key signing
Diffstat (limited to 'xibuilds/bash.xibuild')
-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"
+}
+