summaryrefslogtreecommitdiffstats
path: root/sed
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 /sed
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 'sed')
-rw-r--r--sed/.footprint.i68613
-rw-r--r--sed/.footprint.x86_6413
-rw-r--r--sed/.md5sum.i6861
-rw-r--r--sed/.md5sum.x86_641
-rwxr-xr-xsed/Pkgfile20
5 files changed, 48 insertions, 0 deletions
diff --git a/sed/.footprint.i686 b/sed/.footprint.i686
new file mode 100644
index 000000000..d18122c75
--- /dev/null
+++ b/sed/.footprint.i686
@@ -0,0 +1,13 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/sed
+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/sed.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/sed.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/sed.1.gz
diff --git a/sed/.footprint.x86_64 b/sed/.footprint.x86_64
new file mode 100644
index 000000000..d18122c75
--- /dev/null
+++ b/sed/.footprint.x86_64
@@ -0,0 +1,13 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/sed
+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/sed.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/sed.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/sed.1.gz
diff --git a/sed/.md5sum.i686 b/sed/.md5sum.i686
new file mode 100644
index 000000000..fbb079b39
--- /dev/null
+++ b/sed/.md5sum.i686
@@ -0,0 +1 @@
+f0fd4d7da574d4707e442285fd2d3b86 sed-4.2.1.tar.gz
diff --git a/sed/.md5sum.x86_64 b/sed/.md5sum.x86_64
new file mode 100644
index 000000000..fbb079b39
--- /dev/null
+++ b/sed/.md5sum.x86_64
@@ -0,0 +1 @@
+f0fd4d7da574d4707e442285fd2d3b86 sed-4.2.1.tar.gz
diff --git a/sed/Pkgfile b/sed/Pkgfile
new file mode 100755
index 000000000..7a5f27810
--- /dev/null
+++ b/sed/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Editeur de fichier a la volee (Stream)
+# URL: http://www.gnu.org/software/sed//sed.html
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+
+name=sed
+version=4.2.1
+release=1
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
+
+build() {
+cd $name-$version
+./configure --prefix=/usr \
+ --bindir=/bin \
+ --htmldir=/usr/share/doc/sed-$version
+ make
+ make html
+ make DESTDIR=$PKG install
+ rm -r $PKG/usr/share/info/dir
+}