eth0s/toolchain/10-bash

12 lines
210 B
Text
Raw Normal View History

name=bash
version=5.0
source=(http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz)
2018-12-01 00:12:45 +08:00
build() {
cd $name-$version
2018-12-01 00:12:45 +08:00
./configure --prefix=/tools --without-bash-malloc
make
make install
ln -sv bash /tools/bin/sh
}