description="The Bash package contains the Bourne-Again SHell."
maintainer="Brian Fox,Chet Ramey and many more"
packager="tnut <tnut@nutyx.org>"

name=bash
version=4.4.18

source=(http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz)

build()
{
cd bash-$version
./configure --prefix=/usr \
--htmldir=/usr/share/doc/bash-$version \
--without-bash-malloc \
--with-installed-readline

make
make DESTDIR=$PKG install

mkdir -p $PKG/bin
mv -vf $PKG/usr/bin/bash $PKG/bin
ln -s bash $PKG/bin/sh
}
