mirror of
				https://github.com/meizu-m86/twrp_multirom_m86
				synced 2025-11-04 06:15:41 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			947 B
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			947 B
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
Summary: pigz is a parallel implementation of gzip which utilizes multiple cores
 | 
						|
Name: pigz
 | 
						|
Version: 2.2.5
 | 
						|
Release: 1
 | 
						|
Source0: %{name}-%{version}.tar.gz
 | 
						|
License: zlib
 | 
						|
Group: Applications/Tools
 | 
						|
Packager: Duncan Brown <duncan@duncanbrown.org>
 | 
						|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 | 
						|
URL: http://www.zlib.net/pigz
 | 
						|
 | 
						|
%description
 | 
						|
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.
 | 
						|
 | 
						|
%clean
 | 
						|
rm -rf $RPM_BUILD_ROOT
 | 
						|
%prep
 | 
						|
mkdir -p $RPM_BUILD_ROOT
 | 
						|
 | 
						|
%setup -q
 | 
						|
%build
 | 
						|
make
 | 
						|
mkdir -p ${RPM_BUILD_ROOT}/usr/bin
 | 
						|
mkdir -p ${RPM_BUILD_ROOT}/usr/man/man1
 | 
						|
mv pigz unpigz ${RPM_BUILD_ROOT}/usr/bin
 | 
						|
mv pigz.1 ${RPM_BUILD_ROOT}/usr/man/man1
 | 
						|
 | 
						|
%files
 | 
						|
%defattr(-,root,root)
 | 
						|
/usr/bin/pigz
 | 
						|
/usr/bin/unpigz
 | 
						|
%doc
 | 
						|
/usr/man/man1/pigz.1
 |