diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:39:54 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:39:54 +0200 |
commit | 1d179fdf93a08a492b1a1c712c0e9d82fea61cab (patch) | |
tree | 05aa3e52a3e49991f2a77b7c64e16c91fa646ddf /base/bash/Pkgfile | |
parent | a2a2b89094dc3305e25f48517bbbc1857c71e666 (diff) | |
download | nutyx-pakxe-1d179fdf93a08a492b1a1c712c0e9d82fea61cab.tar.gz nutyx-pakxe-1d179fdf93a08a492b1a1c712c0e9d82fea61cab.tar.bz2 nutyx-pakxe-1d179fdf93a08a492b1a1c712c0e9d82fea61cab.tar.xz nutyx-pakxe-1d179fdf93a08a492b1a1c712c0e9d82fea61cab.zip |
Ajout de bash#4.0-1
Diffstat (limited to 'base/bash/Pkgfile')
-rwxr-xr-x | base/bash/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/base/bash/Pkgfile b/base/bash/Pkgfile new file mode 100755 index 000000000..c6a84d24d --- /dev/null +++ b/base/bash/Pkgfile @@ -0,0 +1,27 @@ +# 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 +# Depends on: ncurses + +name=bash +version=4.0 +release=1 +source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \ +http://www.linuxfromscratch.org/patches/lfs/development/bash-$version-fixes-2.patch) +build() { +cd $name-$version +patch -Np1 -i ../bash-$version-fixes-2.patch +./configure --prefix=/usr \ + --bindir=/bin \ + --htmldir=/usr/share/doc/bash-4.0 \ + --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 +} |