diff options
Diffstat (limited to 'repo/core/bash.xibuild')
-rw-r--r-- | repo/core/bash.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/bash.xibuild b/repo/core/bash.xibuild new file mode 100644 index 0000000..ab6e11e --- /dev/null +++ b/repo/core/bash.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(readline glibc ncurses) + +SOURCE=https://git.savannah.gnu.org/git/bash.git +DESC="The free Bourne Again Shell" + +build () { + ./configure --without-bash-malloc --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} + |