28 lines
634 B
Plaintext
28 lines
634 B
Plaintext
# Tanım: The Bash package contains the Bourne-Again SHell.
|
||
# Url: http://ftp.gnu.org/gnu/bash/
|
||
# Paketçi: milisarge@gmail.com
|
||
# Gerekler:
|
||
|
||
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
|
||
}
|