summaryrefslogtreecommitdiffstats
path: root/ed
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-21 05:06:18 +0100
committerLukc <lukc@upyum.com>2010-12-21 05:06:18 +0100
commite36f5e1b38b8f04f9838418cae68212086a80756 (patch)
tree4744d2eb7af2a2ed6dcfc5c2dfbae24fd46ddbdb /ed
parent860842f606309455350044bf4c96ac7cf608b31a (diff)
downloadbase-e36f5e1b38b8f04f9838418cae68212086a80756.tar.gz
base-e36f5e1b38b8f04f9838418cae68212086a80756.tar.bz2
base-e36f5e1b38b8f04f9838418cae68212086a80756.tar.xz
base-e36f5e1b38b8f04f9838418cae68212086a80756.zip
Recette de ed mise à jour.
Diffstat (limited to 'ed')
-rw-r--r--ed/.footprint12
-rw-r--r--ed/Pkgfile21
2 files changed, 20 insertions, 13 deletions
diff --git a/ed/.footprint b/ed/.footprint
index 44ae7ad..7be0b00 100644
--- a/ed/.footprint
+++ b/ed/.footprint
@@ -2,7 +2,11 @@ drwxr-xr-x root/root bin/
-rwxr-xr-x root/root bin/ed
-rwxr-xr-x root/root bin/red
drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/man/
-drwxr-xr-x root/root usr/man/man1/
--rw-r--r-- root/root usr/man/man1/ed.1.gz
-lrwxrwxrwx root/root usr/man/man1/red.1.gz -> ed.1.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/dir
+-rw-r--r-- root/root usr/share/info/ed.info
+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.bz2
+lrwxrwxrwx root/root usr/share/man/man1/red.1.bz2 -> ed.1.bz2
diff --git a/ed/Pkgfile b/ed/Pkgfile
index 270c696..0d1ab00 100644
--- a/ed/Pkgfile
+++ b/ed/Pkgfile
@@ -1,18 +1,21 @@
-description="An 8-bit clean, POSIX-compliant line editor"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="An 8-bit clean, POSIX-compliant line editor."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/ed/ed.html"
depends=()
name=ed
version=1.5
release=1
-source=(ftp://ftp.gnu.org/gnu/ed/ed-1.5.tar.gz)
+source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build ()
{
- cd $name-$version;
- ./configure --prefix=/usr --exec-prefix=/ --mandir=/usr/man CFLAGS="$CFLAGS";
- make;
- make DESTDIR=$PKG install;
- rm -r $PKG/usr/share
+ cd $name-$version;
+ ./configure \
+ --prefix=$prefix \
+ --exec-prefix=/ \
+ --mandir=$mandir \
+ CFLAGS="$CFLAGS";
+ make ${CTARGET:+CC=$CTARGET-gcc};
+ make DESTDIR=$PKG install;
}