23 lines
556 B
Text
Executable file
23 lines
556 B
Text
Executable file
# Description: The Bourne-Again SHell
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=bash
|
|
version=5.1.16
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--without-bash-malloc \
|
|
--with-installed-readline
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mkdir -p $PKG/bin
|
|
mv $PKG/usr/bin/bash $PKG/bin
|
|
ln -s bash $PKG/bin/sh
|
|
}
|