milis/talimatname/temel/gzip/talimat

22 lines
403 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:
2017-10-28 14:15:02 +02:00
isim=gzip
surum=1.6
devir=1
2016-02-24 01:27:23 +01:00
2017-10-28 14:15:02 +02:00
kaynak=(http://ftp.gnu.org/gnu/gzip/gzip-$surum.tar.xz)
2016-02-24 01:27:23 +01:00
2017-10-27 23:59:41 +02:00
derle()
2016-02-24 01:27:23 +01:00
{
2017-10-28 14:15:02 +02:00
cd gzip-$surum
2016-02-24 01:27:23 +01:00
./configure --prefix=/usr \
--bindir=/bin --libdir=/lib
make
make -k check || true
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
}