"Fossies" - the Fresh Open Source Software Archive

Member "pigz-2.8/pigz.spec" (20 Aug 2023, 945 Bytes) of package /linux/privat/pigz-2.8.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) RPM Spec source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the latest Fossies "Diffs" side-by-side code changes report for "pigz.spec": 2.7_vs_2.8.

A hint: This file contains one or more very long lines, so maybe it is better readable using the pure text view mode that shows the contents as wrapped lines within the browser window.


    1 Summary: pigz is a parallel implementation of gzip which utilizes multiple cores
    2 Name: pigz
    3 Version: 2.8
    4 Release: 1
    5 Source0: %{name}-%{version}.tar.gz
    6 License: zlib
    7 Group: Applications/Tools
    8 Packager: Duncan Brown <duncan@duncanbrown.org>
    9 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
   10 URL: http://www.zlib.net/pigz
   11 
   12 %description
   13 pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries.
   14 
   15 %clean
   16 rm -rf $RPM_BUILD_ROOT
   17 %prep
   18 mkdir -p $RPM_BUILD_ROOT
   19 
   20 %setup -q
   21 %build
   22 make
   23 mkdir -p ${RPM_BUILD_ROOT}/usr/bin
   24 mkdir -p ${RPM_BUILD_ROOT}/usr/man/man1
   25 mv pigz unpigz ${RPM_BUILD_ROOT}/usr/bin
   26 mv pigz.1 ${RPM_BUILD_ROOT}/usr/man/man1
   27 
   28 %files
   29 %defattr(-,root,root)
   30 /usr/bin/pigz
   31 /usr/bin/unpigz
   32 %doc
   33 /usr/man/man1/pigz.1