1234567891011121314151617181920212223242526272829303132333435 |
- Name: lzip
- Version: 1.23
- Release: 1%{?dist}
- Summary: lossless data compressor using LZMA
- License: GPLv3+
- URL: https://www.nongnu.org/lzip/lzip.html
- Source0: https://download.savannah.gnu.org/releases/lzip/lzip-1.23.tar.gz
- BuildRequires: gcc-c++
- %description
- 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.
- %prep
- %setup -q
- %build
- %configure
- make %{?_smp_mflags}
- %install
- make install DESTDIR=%{buildroot}
- rm -f "%{buildroot}/usr/share/info/dir"
- %files
- /usr/bin/lzip
- %{_mandir}/man1/lzip*
- %{_infodir}/lzip.info*
- %changelog
|