summaryrefslogtreecommitdiffstats
path: root/bash/Pkgfile
blob: dffc88fa1acda146bfe8064b0fe53f33827f3c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Description: Interpréteur de commandes très puissant.
# URL: http://www.gnu.org/software/bash/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch

name=bash
version=4.2
release=5
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
	http://www.linuxfromscratch.org/patches/lfs/development/bash-$version-fixes-7.patch)

build() {
	cd $name-$version
	patch -Np1 -i ../bash-$version-fixes-7.patch
	./configure --prefix=/usr \
		--bindir=/bin \
		--htmldir=/usr/share/doc/$name-$version \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--without-bash-malloc \
		--with-installed-readline
	make
	make DESTDIR=$PKG install
	if [ -f $PKG/usr/share/info/dir ]; then
		rm $PKG/usr/share/info/dir
	fi
	rm -rf $PKG/usr/share/doc
}