summaryrefslogtreecommitdiffstats
path: root/base/sed
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:31:14 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:31:14 +0200
commit9db4766d352665c31b2a5595367fc627f2ad195c (patch)
treedbc7d2a2d71e73d148448e1724b1b3d2ff0b7f2f /base/sed
parentab657b82f91c5d4d1d28f4ce1a68060df62df0c0 (diff)
downloadnutyx-extra-9db4766d352665c31b2a5595367fc627f2ad195c.tar.gz
nutyx-extra-9db4766d352665c31b2a5595367fc627f2ad195c.tar.bz2
nutyx-extra-9db4766d352665c31b2a5595367fc627f2ad195c.tar.xz
nutyx-extra-9db4766d352665c31b2a5595367fc627f2ad195c.zip
Ajout de sed#4.2.1-1
Diffstat (limited to 'base/sed')
-rw-r--r--base/sed/.footprint13
-rw-r--r--base/sed/.md5sum1
-rwxr-xr-xbase/sed/Pkgfile20
3 files changed, 34 insertions, 0 deletions
diff --git a/base/sed/.footprint b/base/sed/.footprint
new file mode 100644
index 000000000..d18122c75
--- /dev/null
+++ b/base/sed/.footprint
@@ -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/base/sed/.md5sum b/base/sed/.md5sum
new file mode 100644
index 000000000..fbb079b39
--- /dev/null
+++ b/base/sed/.md5sum
@@ -0,0 +1 @@
+f0fd4d7da574d4707e442285fd2d3b86 sed-4.2.1.tar.gz
diff --git a/base/sed/Pkgfile b/base/sed/Pkgfile
new file mode 100755
index 000000000..fb4cfe0fa
--- /dev/null
+++ b/base/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
+# Depends on: db
+
+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 DESTDIR=$PKG install
+ rm -r $PKG/usr/share/info/dir
+}