diff options
author | piernov <piernov@piernov.org> | 2012-01-22 11:53:58 +0100 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2012-01-22 11:53:58 +0100 |
commit | 656378eb13dd8c1af44a368e7dfee3333eb055a2 (patch) | |
tree | 9707d7a6d1af19d5c1d8431821232ae81ce42d85 /sed | |
parent | 9626427c1a1d9c292fc519810c13b9a8073e777f (diff) | |
parent | 8d576551b5c270c65fe06443b7295d73cc662064 (diff) | |
download | nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.gz nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.bz2 nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.xz nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.zip |
Merged with http://kiao.no-ip.info/NuTyX/git/nutyx-pakxe → Repository splitted → nutyx-pakxe
Diffstat (limited to 'sed')
-rw-r--r-- | sed/.footprint.i686 | 13 | ||||
-rw-r--r-- | sed/.footprint.x86_64 | 13 | ||||
-rw-r--r-- | sed/.md5sum.i686 | 1 | ||||
-rw-r--r-- | sed/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | sed/Pkgfile | 20 |
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 +} |