blob: e5a02b94b0c87072b2a2336c14c6f23dcf70343c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name=bash
version=5.2.37
release=1
source="https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
bashrc"
build_opt="--without-bash-malloc --with-installed-readline"
postbuild() {
mkdir -p $PKG/bin
mv $PKG/usr/bin/bash $PKG/bin
install -d $PKG/etc
install -m644 $SRC/bashrc $PKG/etc
}
|