source: projects/specs/trunk/p/pxz/pxz-vl.spec @ 5788

Revision 5788, 2.3 KB checked in by daisuke, 12 years ago (diff)

pxz: new package

Line 
1%global git_date 20100608
2
3Summary:        Parallel LZMA compressor using XZ
4Summary(ja):    XZ を利用した並列 LZMA 圧縮ツール
5Name:           pxz
6Version:        4.999.9
7Release:        1%{?_dist_release}
8License:        GPLv2+
9Group:          Applications/File
10# source created as "make dist" in checked out GIT tree: git clone git://github.com/jnovy/pxz.git
11Source0:        http://jnovy.fedorapeople.org/%{name}/%{name}-%{version}beta.%{git_date}git.tar.xz
12URL:            http://jnovy.fedorapeople.org/pxz
13BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
14BuildRequires:  xz-devel
15
16%description
17Parallel XZ is a compression utility that takes advantage of running
18XZ compression simultaneously on different parts of an input file on
19multiple cores and processors. This significantly speeds up compression time.
20
21%prep
22%setup -q -n %{name}-%{version}beta
23
24%build
25export CFLAGS="%{optflags} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE"
26make %{?_smp_mflags}
27
28%install
29rm -rf %{buildroot}
30make install DESTDIR=%{buildroot} INSTALL="%{__install} -p"
31
32%clean
33rm -rf %{buildroot}
34
35%files
36%defattr(-,root,root,-)
37%doc COPYING
38%{_mandir}/man1/pxz.1*
39%{_bindir}/pxz
40
41%changelog
42* Wed Feb 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp>  4.999.9-1
43- initial build for Vine Linux
44
45* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.999.9-3.beta.20100608git
46- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
47
48* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.999.9-2.beta.20100608git
49- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
50
51* Thu Jun  8 2010 Jindrich Novy <jnovy@redhat.com> 4.999.9-1.beta.20100608git
52- initial import release
53
54* Thu Jun  3 2010 Jindrich Novy <jnovy@redhat.com> 4.999.9-0.1.beta.20100603git
55- review fixes (#598902)
56
57* Wed May 26 2010 Jindrich Novy <jnovy@redhat.com> 4.999.9-0.1.beta.20100526git
58- add -D option to specify context size per thread
59
60* Fri Feb 19 2010 Jindrich Novy <jnovy@redhat.com> 4.999.9-0.1.beta.20100217git
61- better error handling and stability fixes
62
63* Wed Dec  9 2009 Jindrich Novy <jnovy@redhat.com> 4.999.9-0.1.beta.20091209git
64- use fixed size context per thread (3x dict size by default)
65- reduce memory requirements for compression
66
67* Wed Nov 18 2009 Jindrich Novy <jnovy@redhat.com> 4.999.9-0.1.beta.20091118git
68- initial packaging
Note: See TracBrowser for help on using the repository browser.