summaryrefslogtreecommitdiff
path: root/psibuilds/bash.psibuild
diff options
context:
space:
mode:
Diffstat (limited to 'psibuilds/bash.psibuild')
-rw-r--r--psibuilds/bash.psibuild11
1 files changed, 2 insertions, 9 deletions
diff --git a/psibuilds/bash.psibuild b/psibuilds/bash.psibuild
index 9a5d1af..b2a0156 100644
--- a/psibuilds/bash.psibuild
+++ b/psibuilds/bash.psibuild
@@ -1,19 +1,12 @@
#!/bin/bash
-DEPS=(readline libreadline.so=8-64 glibc ncurses)
+DEPS=(readline glibc ncurses)
-fetch () {
- git clone https://git.savannah.gnu.org/git/bash.git
-}
+SOURCE=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"
-}
-