summaryrefslogtreecommitdiffstats
path: root/base/bash
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:39:54 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:39:54 +0200
commit1d179fdf93a08a492b1a1c712c0e9d82fea61cab (patch)
tree05aa3e52a3e49991f2a77b7c64e16c91fa646ddf /base/bash
parenta2a2b89094dc3305e25f48517bbbc1857c71e666 (diff)
downloadnutyx-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')
-rw-r--r--base/bash/.footprint19
-rw-r--r--base/bash/.md5sum2
-rwxr-xr-xbase/bash/Pkgfile27
3 files changed, 48 insertions, 0 deletions
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
+}