eth0s/toolchain/10-bash
2020-07-02 23:33:24 +08:00

11 lines
210 B
Text
Executable file

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