summaryrefslogtreecommitdiffstats
path: root/grep
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 /grep
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 'grep')
-rw-r--r--grep/.footprint.i68617
-rw-r--r--grep/.footprint.x86_6417
-rw-r--r--grep/.md5sum.i6861
-rw-r--r--grep/.md5sum.x86_641
-rwxr-xr-xgrep/Pkgfile21
5 files changed, 57 insertions, 0 deletions
diff --git a/grep/.footprint.i686 b/grep/.footprint.i686
new file mode 100644
index 000000000..21af1f465
--- /dev/null
+++ b/grep/.footprint.i686
@@ -0,0 +1,17 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/egrep
+-rwxr-xr-x root/root bin/fgrep
+-rwxr-xr-x root/root bin/grep
+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/grep.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/grep.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/egrep.1.gz
+-rw-r--r-- root/root usr/share/man/man1/fgrep.1.gz
+-rw-r--r-- root/root usr/share/man/man1/grep.1.gz
diff --git a/grep/.footprint.x86_64 b/grep/.footprint.x86_64
new file mode 100644
index 000000000..21af1f465
--- /dev/null
+++ b/grep/.footprint.x86_64
@@ -0,0 +1,17 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/egrep
+-rwxr-xr-x root/root bin/fgrep
+-rwxr-xr-x root/root bin/grep
+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/grep.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/grep.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/egrep.1.gz
+-rw-r--r-- root/root usr/share/man/man1/fgrep.1.gz
+-rw-r--r-- root/root usr/share/man/man1/grep.1.gz
diff --git a/grep/.md5sum.i686 b/grep/.md5sum.i686
new file mode 100644
index 000000000..5131e83a5
--- /dev/null
+++ b/grep/.md5sum.i686
@@ -0,0 +1 @@
+cb2dfc502c5afc7a4a6e5f6cefd6850e grep-2.8.tar.gz
diff --git a/grep/.md5sum.x86_64 b/grep/.md5sum.x86_64
new file mode 100644
index 000000000..5131e83a5
--- /dev/null
+++ b/grep/.md5sum.x86_64
@@ -0,0 +1 @@
+cb2dfc502c5afc7a4a6e5f6cefd6850e grep-2.8.tar.gz
diff --git a/grep/Pkgfile b/grep/Pkgfile
new file mode 100755
index 000000000..2601c697b
--- /dev/null
+++ b/grep/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Programme pour rechercher à travers des fichiers.
+# URL: http://www.gnu.org/software/grep/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+
+name=grep
+version=2.8
+release=1
+source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz )
+
+build() {
+cd $name-$version
+./configure --prefix=/usr --mandir=/usr/share/man \
+ --infodir=/usr/share/info --without-included-regex \
+ --bindir=/bin
+make
+make DESTDIR=$PKG install
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}