repo/bash/build

10 lines
192 B
Text
Raw Normal View History

2021-07-16 23:33:05 +03:00
wget https://ftp.gnu.org/gnu/bash/bash-5.1.8.tar.gz
2021-07-09 22:22:24 +03:00
tar -xf bash-5.1.8.tar.gz
cd bash-5.1.8
2021-07-13 02:13:05 +03:00
sed -e 's/$(prefix)/$(DESTDIR)$(prefix)/g' -i Makefile
2021-07-09 22:22:24 +03:00
./configure
make
2021-07-13 19:33:19 +03:00
make install DESTDIR="$1"