milis/talimatname/temel/bash/talimat

27 lines
641 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
# Description: The Bash package contains the Bourne-Again SHell.
# Maintainers: Brian Fox,Chet Ramey and many more
2016-03-20 02:15:25 +01:00
# Packager: milisarge@gmail.com
2016-02-24 01:27:23 +01:00
name=bash
version=4.3.30
release=3
source=(http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz
http://www.linuxfromscratch.org/patches/downloads/$name/$name-$version-upstream_fixes-2.patch)
build()
{
cd bash-$version
patch -Np1 -i ../$name-$version-upstream_fixes-2.patch
./configure --prefix=/usr --bindir=/bin \
--htmldir=/usr/share/doc/bash-$version --without-bash-malloc \
--with-installed-readline
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
ln -s bash $PKG/bin/sh
}