summaryrefslogtreecommitdiffstats
path: root/base/ed
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-08 18:42:13 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-08 18:42:13 +0200
commita801e17727290c832f72a6b56a9e084714cf7357 (patch)
tree8d460dae696291257af1f25e86cd613f87e2cb96 /base/ed
parent73a36e722754873e31b136601dac90ed46bed4bc (diff)
downloadnutyx-pakxe-a801e17727290c832f72a6b56a9e084714cf7357.tar.gz
nutyx-pakxe-a801e17727290c832f72a6b56a9e084714cf7357.tar.bz2
nutyx-pakxe-a801e17727290c832f72a6b56a9e084714cf7357.tar.xz
nutyx-pakxe-a801e17727290c832f72a6b56a9e084714cf7357.zip
Ajout de ed#1.0-1
Diffstat (limited to 'base/ed')
-rw-r--r--base/ed/.footprint11
-rw-r--r--base/ed/.md5sum1
-rw-r--r--base/ed/Pkgfile24
3 files changed, 36 insertions, 0 deletions
diff --git a/base/ed/.footprint b/base/ed/.footprint
new file mode 100644
index 000000000..934ed6381
--- /dev/null
+++ b/base/ed/.footprint
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/ed
+lrwxrwxrwx root/root bin/red -> ed
+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/ed.info.gz
+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/ed.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/red.1.gz -> ed.1.gz
diff --git a/base/ed/.md5sum b/base/ed/.md5sum
new file mode 100644
index 000000000..55f2ba952
--- /dev/null
+++ b/base/ed/.md5sum
@@ -0,0 +1 @@
+80d096dc98fd17a44fb9e3ed3e719ee7 ed-1.0.tar.bz2
diff --git a/base/ed/Pkgfile b/base/ed/Pkgfile
new file mode 100644
index 000000000..6f4ab13ea
--- /dev/null
+++ b/base/ed/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Un éditeur 8 bits compliant POSIX
+# URL: http://www.gnu.org/software/ed/ed.html
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=ed
+version=1.0
+release=1
+source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ sed -i -e 's/ln /ln -s /' Makefile.in
+
+ ./configure --prefix=/usr \
+ --exec-prefix=/ \
+ --mandir=/usr/share/man
+ CFLAGS="$CFLAGS"
+ make
+ make DESTDIR=$PKG install install-man
+ rm $PKG/usr/share/info/dir
+
+}