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."
contributors="Pierre,Tnut"
packager="Spiky <spiky@nutyx.org>"

name=gzip
version=1.12

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

build()
{
cd $name-$version

./configure --prefix=/usr
make
make -k check || true
make DESTDIR=$PKG install
mkdir -p $PKG/bin
mv -v $PKG/usr/bin/gzip $PKG/bin
}
