summaryrefslogtreecommitdiffstats
path: root/bash/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/Pkgfile')
-rwxr-xr-xbash/Pkgfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/bash/Pkgfile b/bash/Pkgfile
new file mode 100755
index 000000000..9b3ce5e1d
--- /dev/null
+++ b/bash/Pkgfile
@@ -0,0 +1,26 @@
+# 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=1
+source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\
+ http://www.linuxfromscratch.org/patches/lfs/development/bash-$version-fixes-1.patch)
+
+build() {
+cd $name-$version
+patch -Np1 -i ../bash-$version-fixes-1.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
+}