From 1d179fdf93a08a492b1a1c712c0e9d82fea61cab Mon Sep 17 00:00:00 2001 From: Thierry N Date: Fri, 7 Aug 2009 13:39:54 +0200 Subject: Ajout de bash#4.0-1 --- base/bash/.footprint | 19 +++++++++++++++++++ base/bash/.md5sum | 2 ++ base/bash/Pkgfile | 27 +++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 base/bash/.footprint create mode 100644 base/bash/.md5sum create mode 100755 base/bash/Pkgfile (limited to 'base/bash') diff --git a/base/bash/.footprint b/base/bash/.footprint new file mode 100644 index 000000000..ec43d9b4e --- /dev/null +++ b/base/bash/.footprint @@ -0,0 +1,19 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/bash +-r-xr-xr-x root/root bin/bashbug +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/doc/ +drwxr-xr-x root/root usr/share/doc/bash-4.0/ +-rw-r--r-- root/root usr/share/doc/bash-4.0/bash.html +-rw-r--r-- root/root usr/share/doc/bash-4.0/bashref.html +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/bash.info.gz +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/fr/ +drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/bash.mo +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/bash.1.gz +-rw-r--r-- root/root usr/share/man/man1/bashbug.1.gz diff --git a/base/bash/.md5sum b/base/bash/.md5sum new file mode 100644 index 000000000..39b2b6fc6 --- /dev/null +++ b/base/bash/.md5sum @@ -0,0 +1,2 @@ +f6f17b7a3d637d14e238da58a5379b42 bash-4.0-fixes-2.patch +a90a1b5a6db4838483f05438e05e8eb9 bash-4.0.tar.gz 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 +} -- cgit v1.2.3-54-g00ecf