From 6aa33d06de9b5349e8ba99ebb03145f71f78789f Mon Sep 17 00:00:00 2001 From: Jose V Beneyto Date: Thu, 18 Oct 2012 22:10:42 +0000 Subject: [PATCH] gzip: updated to 1.5 and aligned with upstream --- gzip/.footprint | 2 +- gzip/.md5sum | 2 +- gzip/Pkgfile | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/gzip/.footprint b/gzip/.footprint index 388d9f1..39f58b6 100644 --- a/gzip/.footprint +++ b/gzip/.footprint @@ -5,7 +5,7 @@ drwxr-xr-x root/root bin/ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/gzexe -lrwxrwxrwx root/root usr/bin/uncompress -> /bin/gunzip +-rwxr-xr-x root/root usr/bin/uncompress -rwxr-xr-x root/root usr/bin/zcmp -rwxr-xr-x root/root usr/bin/zdiff -rwxr-xr-x root/root usr/bin/zegrep diff --git a/gzip/.md5sum b/gzip/.md5sum index cd60739..75545f0 100644 --- a/gzip/.md5sum +++ b/gzip/.md5sum @@ -1 +1 @@ -e381b8506210c794278f5527cba0e765 gzip-1.4.tar.gz +11b76536941ee1c0221fe6eefbcb32cb gzip-1.5.tar.gz diff --git a/gzip/Pkgfile b/gzip/Pkgfile index 19089f4..e2dfbe4 100644 --- a/gzip/Pkgfile +++ b/gzip/Pkgfile @@ -5,28 +5,28 @@ # Depends on: name=gzip -version=1.4 +version=1.5 release=1 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) build() { cd $name-$version + ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --mandir=/usr/man + make make DESTDIR=$PKG install - mkdir -p $PKG/bin + install -d $PKG/bin mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin + rm $PKG/usr/man/man1/{gunzip.1,zcat.1,zcmp.1} - ln -sf gzip.1.gz $PKG/usr/man/man1/gunzip.1.gz - ln -sf gzip.1.gz $PKG/usr/man/man1/zcat.1.gz + ln -sf gzip.1.gz $PKG/usr/man/man1/gunzip.1.gz + ln -sf gzip.1.gz $PKG/usr/man/man1/zcat.1.gz ln -sf zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz - # make uncompress a symlink to gunzip, since it will not work - # if / and /usr are on different file systems. - rm $PKG/usr/bin/uncompress - ln -s /bin/gunzip $PKG/usr/bin/uncompress + rm -r $PKG/usr/share } -- 2.26.2