description="The Gzip package contains programs for compressing and decompressing files."
url="http://www.gzip.org/"
maintainer="Jean-loup Gailly jloup at gzip dot org,Mark Adler for the decompression code."
packager="pierre at nutyx dot org"
name=gzip
version=1.8
release=2

source=(http://ftp.gnu.org/gnu/gzip/gzip-$version.tar.xz)

build()
{
cd gzip-$version
./configure --prefix=/usr
make
make -k check || true
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
mkdir -p $PKG/bin
mv -v $PKG/usr/bin/gzip $PKG/bin
}
