lzip.spec 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Name: lzip
  2. Version: 1.23
  3. Release: 1%{?dist}
  4. Summary: lossless data compressor using LZMA
  5. License: GPLv3+
  6. URL: https://www.nongnu.org/lzip/lzip.html
  7. Source0: https://download.savannah.gnu.org/releases/lzip/lzip-1.23.tar.gz
  8. BuildRequires: gcc-c++
  9. %description
  10. Lzip is a lossless data compressor with a user interface similar to the one of gzip or bzip2. Lzip uses a simplified form of the 'Lempel-Ziv-Markov chain-Algorithm' (LZMA) stream format and provides a 3 factor integrity checking to maximize interoperability and optimize safety. Lzip can compress about as fast as gzip (lzip -0) or compress most files more than bzip2 (lzip -9). Decompression speed is intermediate between gzip and bzip2. Lzip is better than gzip and bzip2 from a data recovery perspective. Lzip has been designed, written, and tested with great care to replace gzip and bzip2 as the standard general-purpose compressed format for unix-like systems.
  11. %prep
  12. %setup -q
  13. %build
  14. %configure
  15. make %{?_smp_mflags}
  16. %install
  17. make install DESTDIR=%{buildroot}
  18. rm -f "%{buildroot}/usr/share/info/dir"
  19. %files
  20. /usr/bin/lzip
  21. %{_mandir}/man1/lzip*
  22. %{_infodir}/lzip.info*
  23. %changelog