milis/talimatname/temel/bash/talimat

29 lines
618 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Bash paketi Bourne-Again SHell'i içeriyor.
# Url: http://ftp.gnu.org/gnu/bash/
# Paketçi: milisarge
# Gerekler:
# Grup: temel
isim=bash
surum=4.3.30
devir=3
kaynak=(http://ftp.gnu.org/gnu/bash/bash-$surum.tar.gz
http://www.linuxfromscratch.org/patches/downloads/$isim/$isim-$surum-upstream_fixes-2.patch)
derle()
{
cd bash-$surum
patch -Np1 -i ../$isim-$surum-upstream_fixes-2.patch
./configure --prefix=/usr --bindir=/bin \
--htmldir=/usr/share/doc/bash-$surum --without-bash-malloc \
--with-installed-readline
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
ln -s bash $PKG/bin/sh
}