21 lines
510 B
Plaintext
21 lines
510 B
Plaintext
# Description: The Gzip package contains programs for compressing and decompressing files.
|
|
# URL: http://www.gzip.org/
|
|
# Maintainers: Jean-loup Gailly jloup at gzip dot org,Mark Adler for the decompression code.
|
|
# Packager: pierre at nutyx dot org
|
|
name=gzip
|
|
version=1.6
|
|
release=1
|
|
|
|
source=(http://ftp.gnu.org/gnu/gzip/gzip-$version.tar.xz)
|
|
|
|
build()
|
|
{
|
|
cd gzip-$version
|
|
./configure --prefix=/usr \
|
|
--bindir=/bin --libdir=/lib
|
|
make
|
|
make -k check || true
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/info/dir
|
|
}
|