gzip: update to 1.3.12

This commit is contained in:
Juergen Daubert 2007-04-14 10:00:22 +02:00
parent 6cade67fa1
commit d4045da4cc
3 changed files with 13 additions and 18 deletions

View File

@ -1,14 +1,15 @@
drwxr-xr-x root/root bin/
lrwxrwxrwx root/root bin/gunzip -> gzip
-rwxr-xr-x root/root bin/gunzip
-rwxr-xr-x root/root bin/gzip
lrwxrwxrwx root/root bin/zcat -> gzip
-rwxr-xr-x root/root bin/zcat
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/zcmp -> zdiff
-rwxr-xr-x root/root usr/bin/uncompress
-rwxr-xr-x root/root usr/bin/zcmp
-rwxr-xr-x root/root usr/bin/zdiff
lrwxrwxrwx root/root usr/bin/zegrep -> zgrep
lrwxrwxrwx root/root usr/bin/zfgrep -> zgrep
-rwxr-xr-x root/root usr/bin/zegrep
-rwxr-xr-x root/root usr/bin/zfgrep
-rwxr-xr-x root/root usr/bin/zforce
-rwxr-xr-x root/root usr/bin/zgrep
-rwxr-xr-x root/root usr/bin/zless

View File

@ -1 +1 @@
7cf923b24b718c418e85a283b2260e14 gzip-1.3.9.tar.gz
b5bac2d21840ae077e0217bc5e4845b1 gzip-1.3.12.tar.gz

View File

@ -3,7 +3,7 @@
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=gzip
version=1.3.9
version=1.3.12
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
@ -12,20 +12,14 @@ build() {
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
rm $PKG/usr/bin/{gunzip,zcat,zcmp}
rm $PKG/usr/man/man1/{gunzip.1,zcat.1,zcmp.1}
mkdir -p $PKG/bin
mv $PKG/usr/bin/gzip $PKG/bin
ln -sf gzip $PKG/bin/gunzip
ln -sf gzip $PKG/bin/zcat
ln -sf zdiff $PKG/usr/bin/zcmp
ln -sf zgrep $PKG/usr/bin/zfgrep
ln -sf zgrep $PKG/usr/bin/zegrep
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 zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz
rm -r $PKG/usr/share
}