eth0s/toolchain/10-bash

12 lines
217 B
Text
Raw Permalink Normal View History

name=bash
2022-04-09 08:19:46 +08:00
version=5.1.16
2021-04-18 08:19:42 +08:00
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
2021-05-04 08:20:54 +08:00
make -j1
2018-12-01 00:12:45 +08:00
make install
ln -sv bash /tools/bin/sh
}