talimat 510 B

123456789101112131415161718192021
  1. # Description: The Gzip package contains programs for compressing and decompressing files.
  2. # URL: http://www.gzip.org/
  3. # Maintainers: Jean-loup Gailly jloup at gzip dot org,Mark Adler for the decompression code.
  4. # Packager: pierre at nutyx dot org
  5. name=gzip
  6. version=1.6
  7. release=1
  8. source=(http://ftp.gnu.org/gnu/gzip/gzip-$version.tar.xz)
  9. build()
  10. {
  11. cd gzip-$version
  12. ./configure --prefix=/usr \
  13. --bindir=/bin --libdir=/lib
  14. make
  15. make -k check || true
  16. make DESTDIR=$PKG install
  17. rm -rf $PKG/usr/share/info/dir
  18. }