summaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
commit9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch)
treeae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /bash
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'bash')
-rw-r--r--bash/.footprint.i68615
-rw-r--r--bash/.footprint.x86_6415
-rw-r--r--bash/.md5sum.i6862
-rw-r--r--bash/.md5sum.x86_642
-rwxr-xr-xbash/Pkgfile26
5 files changed, 60 insertions, 0 deletions
diff --git a/bash/.footprint.i686 b/bash/.footprint.i686
new file mode 100644
index 000000000..9894719ad
--- /dev/null
+++ b/bash/.footprint.i686
@@ -0,0 +1,15 @@
+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/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/bash/.footprint.x86_64 b/bash/.footprint.x86_64
new file mode 100644
index 000000000..9894719ad
--- /dev/null
+++ b/bash/.footprint.x86_64
@@ -0,0 +1,15 @@
+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/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/bash/.md5sum.i686 b/bash/.md5sum.i686
new file mode 100644
index 000000000..3bb1bc31c
--- /dev/null
+++ b/bash/.md5sum.i686
@@ -0,0 +1,2 @@
+abae789c2807cb7c7c4c452fa3986f85 bash-4.2-fixes-1.patch
+3fb927c7c33022f1c327f14a81c0d4b0 bash-4.2.tar.gz
diff --git a/bash/.md5sum.x86_64 b/bash/.md5sum.x86_64
new file mode 100644
index 000000000..3bb1bc31c
--- /dev/null
+++ b/bash/.md5sum.x86_64
@@ -0,0 +1,2 @@
+abae789c2807cb7c7c4c452fa3986f85 bash-4.2-fixes-1.patch
+3fb927c7c33022f1c327f14a81c0d4b0 bash-4.2.tar.gz
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
+}