milis/talimatname/temel/gzip/talimat

22 lines
403 B
Text
Raw Normal View History

2017-10-27 22:56:50 +03:00
# Tanım: The Gzip package contains programs for compressing and decompressing files.
2016-02-24 02:27:23 +02:00
# URL: http://www.gzip.org/
2017-10-27 22:56:50 +03:00
# Paketçi: milisarge
# Gerekler:
2017-10-28 15:15:02 +03:00
isim=gzip
surum=1.6
devir=1
2016-02-24 02:27:23 +02:00
2017-10-28 15:15:02 +03:00
kaynak=(http://ftp.gnu.org/gnu/gzip/gzip-$surum.tar.xz)
2016-02-24 02:27:23 +02:00
2017-10-28 00:59:41 +03:00
derle()
2016-02-24 02:27:23 +02:00
{
2017-10-28 15:15:02 +03:00
cd gzip-$surum
2016-02-24 02:27:23 +02:00
./configure --prefix=/usr \
--bindir=/bin --libdir=/lib
make
make -k check || true
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
}