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

Revision 8979, 2.4 KB checked in by inagaki, 10 years ago (diff)

2014-09-27 Ryoichi INAGAKI <ryo1@…>

  • daq, indent, pxz: changed Group


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