0.2
OBS-URL: https://build.opensuse.org/package/show/Archiving/plzip?expand=0&rev=1
This commit is contained in:
commit
682d1d4d2c
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
plzip-0.2.tar.bz2
Normal file
3
plzip-0.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bd33e27b009bf02ad5b565b4ef4fc97aaa8936cd160883e6b7b83527d0ae9a71
|
||||||
|
size 53588
|
5
plzip.changes
Normal file
5
plzip.changes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 19 13:48:40 UTC 2010 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- initial version (0.2)
|
||||||
|
|
89
plzip.spec
Normal file
89
plzip.spec
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: plzip
|
||||||
|
Version: 0.2
|
||||||
|
Release: 0
|
||||||
|
Summary: Parallel LZMA Data Compressor
|
||||||
|
# http://mirrors.zerg.biz/nongnu/lzip/plzip-%{version}.tar.gz
|
||||||
|
Source: plzip-%{version}.tar.bz2
|
||||||
|
URL: http://www.nongnu.org/lzip/plzip.html
|
||||||
|
Group: Productivity/Archiving/Compression
|
||||||
|
License: GNU General Public License version 3 (GPL v3 or later)
|
||||||
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
|
BuildRequires: liblz-devel
|
||||||
|
BuildRequires: gcc-c++ libstdc++-devel make glibc-devel
|
||||||
|
PreReq: %install_info_prereq
|
||||||
|
%if 0%{?suse_version} >= 1030
|
||||||
|
BuildRequires: licenses
|
||||||
|
Requires: licenses
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Plzip is a parallel version of the lzip data compressor. The files produced by
|
||||||
|
plzip are fully compatible with lzip-1.4 or newer. Plzip is intended for faster
|
||||||
|
compression/decompression of big files on multiprocessor machines.
|
||||||
|
|
||||||
|
Lzip is a lossless data compressor based on the LZMA algorithm, with very safe
|
||||||
|
integrity checking and a user interface similar to the one of gzip or bzip2.
|
||||||
|
Lzip decompresses almost as fast as gzip and compresses better than bzip2,
|
||||||
|
which makes it well suited for software distribution and data archiving.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Laszlo Ersek <lacos@caesar.elte.hu>
|
||||||
|
Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
./configure \
|
||||||
|
--prefix="%{_prefix}" \
|
||||||
|
--bindir="%{_bindir}" \
|
||||||
|
--datadir="%{_datadir}" \
|
||||||
|
--includedir="%{_includedir}" \
|
||||||
|
--infodir="%{_infodir}" \
|
||||||
|
--libdir="%{_libdir}" \
|
||||||
|
--mandir="%{_mandir}" \
|
||||||
|
--sysconfdir="%{_sysconfdir}" \
|
||||||
|
--enable-shared \
|
||||||
|
CXX="%__cxx" \
|
||||||
|
CPPFLAGS="%{optflags}" \
|
||||||
|
CXXFLAGS="%{optflags}"
|
||||||
|
|
||||||
|
%__make %{?jobs:-j%{jobs}}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%__make DESTDIR="%{buildroot}" LDCONFIG=echo install
|
||||||
|
|
||||||
|
h=/usr/share/doc/licenses/md5/$(md5sum COPYING|cut -f1 -d" ")
|
||||||
|
test -e "$h" && %__ln_s -f "$h" .
|
||||||
|
|
||||||
|
%check
|
||||||
|
%__make check
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%post
|
||||||
|
%install_info --info-dir="%{_infodir}" "%{_infodir}/%{name}".info%{ext_info}
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%install_info_delete --info-dir="%{_infodir}" "%{_infodir}/%{name}".info%{ext_info}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||||
|
%{_bindir}/plzip
|
||||||
|
%doc %{_infodir}/plzip.info%{ext_info}
|
||||||
|
%doc %{_mandir}/man1/plzip.1%{ext_man}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
# vim: set sw=3 ts=3 noet:
|
||||||
|
# Local Variables:
|
||||||
|
# mode: rpm-spec
|
||||||
|
# tab-width: 3
|
||||||
|
# End:
|
Loading…
x
Reference in New Issue
Block a user