milis/talimatname/temel/gzip/talimat

22 lines
411 B
Plaintext
Raw Normal View History

2017-10-27 21:56:50 +02:00
# Tanım: The Gzip package contains programs for compressing and decompressing files.
2016-02-24 01:27:23 +01:00
# URL: http://www.gzip.org/
2017-10-27 21:56:50 +02:00
# Paketçi: milisarge
# Gerekler:
2016-02-24 01:27:23 +01:00
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
}