1.2
OBS-URL: https://build.opensuse.org/package/show/Archiving/clzip?expand=0&rev=1
This commit is contained in:
commit
7cf792010d
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
clzip-1.2.tar.gz
Normal file
3
clzip-1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3eaf456990030aefffda9e6e1401fc5fbe79bea533edaeb4d4a7221c365fc5e2
|
||||
size 89165
|
5
clzip.changes
Normal file
5
clzip.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 18:07:08 CET 2011 - pascal.bleser@opensuse.org
|
||||
|
||||
- initial version (1.2)
|
||||
|
61
clzip.spec
Normal file
61
clzip.spec
Normal file
@ -0,0 +1,61 @@
|
||||
# vim: set sw=4 ts=4 et nu:
|
||||
|
||||
Name: clzip
|
||||
Version: 1.2
|
||||
Release: 0
|
||||
Summary: Lossless Data Compressor based on LZMA
|
||||
Source: http://ftp.igh.cnrs.fr/pub/nongnu/lzip/clzip-%{version}.tar.gz
|
||||
URL: http://www.nongnu.org/lzip/clzip.html
|
||||
Group: Productivity/Archiving/Compression
|
||||
License: GNU General Public License version 3 (GPL v3)
|
||||
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||
BuildRequires: gcc make glibc-devel pkgconfig
|
||||
Requires(post): info
|
||||
Requires(preun): info
|
||||
|
||||
%description
|
||||
Clzip is a lossless data compressor based on the LZMA algorithm, with very safe
|
||||
integrity checking and a user interface similar to that of gzip or bzip2. Clzip
|
||||
decompresses almost as fast as gzip and compresses better than bzip2, which
|
||||
makes it well suited for software distribution and data archiving. Clzip uses
|
||||
the lzip file format; the files produced by clzip are fully compatible with
|
||||
lzip-1.4 or newer. Clzip is, in fact, a C language implementation of lzip,
|
||||
intended for embedded devices or systems lacking a C++ compiler.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
# not autoconf
|
||||
./configure \
|
||||
--srcdir=. \
|
||||
--prefix="%{_prefix}" \
|
||||
--bindir="%{_bindir}" \
|
||||
--datadir="%{_datadir}" \
|
||||
--infodir="%{_infodir}" \
|
||||
--mandir="%{_mandir}" \
|
||||
--sysconfdir="%{_sysconfdir}" \
|
||||
CC="%__cc" \
|
||||
CFLAGS="%{optflags}"
|
||||
|
||||
%__make %{?_smp_flags}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
|
||||
%post
|
||||
%install_info --info-dir="%{_infodir}" "%{_infodir}/clzip.info%{ext_info}"
|
||||
|
||||
%preun
|
||||
%install_info_delete --info-dir="%{_infodir}" "%{_infodir}/clzip.info%{ext_info}"
|
||||
|
||||
%clean
|
||||
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||
%{_bindir}/clzip
|
||||
%doc %{_mandir}/man1/clzip.1%{ext_man}
|
||||
%doc %{_infodir}/clzip.info%{ext_info}
|
||||
|
Loading…
Reference in New Issue
Block a user