aboutsummaryrefslogtreecommitdiff
path: root/testing/bash/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2019-12-10 14:05:48 +0300
committerCem Keylan <cem@ckyln.com>2019-12-10 14:05:48 +0300
commitcb6cce5732a6e4b03160c409294d3c074d9838e9 (patch)
tree3f65b80eb0c5f15b42103245e203fc7a17ebc292 /testing/bash/build
parentc23c23a281be7f52a4056ad06398c674a8c78e44 (diff)
downloadrepository-cb6cce5732a6e4b03160c409294d3c074d9838e9.tar.gz
added bash and zsh to testing
Diffstat (limited to 'testing/bash/build')
-rwxr-xr-xtesting/bash/build16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/bash/build b/testing/bash/build
new file mode 100755
index 00000000..f6362fa0
--- /dev/null
+++ b/testing/bash/build
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+for patch in bash50-0??; do
+ patch -p0 < "$patch"
+done
+
+./configure \
+ --prefix=/usr \
+ --without-bash-malloc \
+ --without-installed-readline \
+ --disable-nls
+
+export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS"
+
+make
+make DESTDIR="$1" install