1 # Description: GNU compression utility (replacement for compress)
2 # URL: http://www.gzip.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
10 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
15 ./configure --build=$CHOST \
20 make DESTDIR=$PKG install
23 mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin
25 rm $PKG/usr/share/man/man1/{gunzip.1,zcat.1,zcmp.1}
26 ln -sf gzip.1.gz $PKG/usr/share/man/man1/gunzip.1.gz
27 ln -sf gzip.1.gz $PKG/usr/share/man/man1/zcat.1.gz
28 ln -sf zdiff.1.gz $PKG/usr/share/man/man1/zcmp.1.gz
30 # make uncompress a symlink to gunzip, since the hardlink
31 # will not work if / and /usr are on different file systems.
32 rm $PKG/usr/bin/uncompress
33 ln -s /bin/gunzip $PKG/usr/bin/uncompress
35 rm -r $PKG/usr/share/info