2018-01-08 21:38:42 +01:00
|
|
|
|
# Tanım: Bash paketi Bourne-Again SHell'i içeriyor.
|
2017-10-27 21:56:50 +02:00
|
|
|
|
# Url: http://ftp.gnu.org/gnu/bash/
|
2018-01-08 15:01:28 +01:00
|
|
|
|
# Paketçi: milisarge
|
2017-10-27 21:56:50 +02:00
|
|
|
|
# Gerekler:
|
2018-01-08 15:01:28 +01:00
|
|
|
|
# Grup: temel
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:15:02 +02:00
|
|
|
|
isim=bash
|
|
|
|
|
surum=4.3.30
|
|
|
|
|
devir=3
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:15:02 +02:00
|
|
|
|
kaynak=(http://ftp.gnu.org/gnu/bash/bash-$surum.tar.gz
|
|
|
|
|
http://www.linuxfromscratch.org/patches/downloads/$isim/$isim-$surum-upstream_fixes-2.patch)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle()
|
2016-02-24 01:27:23 +01:00
|
|
|
|
{
|
2017-10-28 14:15:02 +02:00
|
|
|
|
cd bash-$surum
|
|
|
|
|
patch -Np1 -i ../$isim-$surum-upstream_fixes-2.patch
|
2016-02-24 01:27:23 +01:00
|
|
|
|
./configure --prefix=/usr --bindir=/bin \
|
2017-10-28 14:15:02 +02:00
|
|
|
|
--htmldir=/usr/share/doc/bash-$surum --without-bash-malloc \
|
2016-02-24 01:27:23 +01:00
|
|
|
|
--with-installed-readline
|
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/share/info/dir
|
|
|
|
|
|
|
|
|
|
ln -s bash $PKG/bin/sh
|
|
|
|
|
}
|