summaryrefslogtreecommitdiff
path: root/xibuilds
diff options
context:
space:
mode:
Diffstat (limited to 'xibuilds')
-rw-r--r--xibuilds/bash.xibuild19
1 files changed, 0 insertions, 19 deletions
diff --git a/xibuilds/bash.xibuild b/xibuilds/bash.xibuild
deleted file mode 100644
index 9a5d1af..0000000
--- a/xibuilds/bash.xibuild
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-DEPS=(readline libreadline.so=8-64 glibc ncurses)
-
-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"
-}
-