- Update to new upstream release 131 (library 1.7)

OBS-URL: https://build.opensuse.org/package/show/Archiving/lz4?expand=0&rev=18
This commit is contained in:
2016-04-02 19:30:27 +00:00
committed by Git OBS Bridge
parent b8440fcd19
commit 99d039b750
7 changed files with 79 additions and 66 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package lz4
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,29 +17,27 @@
Name: lz4
%define lname liblz4-1_4
Version: 1.4.0+svn124
%define lname liblz4-1_7
Version: 131
Release: 0
Summary: Hash-based Predictive Lempel-Ziv compressor
Summary: Hash-based Predictive LempelZiv compressor
License: GPL-2.0+ and BSD-2-Clause
Group: Productivity/Archiving/Compression
Url: http://code.google.com/p/lz4/
#URL: http://fastcompression.blogspot.com/p/lz4.html
Url: http://lz4.org/
#SVN-Clone: http://lz4.googlecode.com/svn/trunk
# Project offers no source tarballs.
Source: %name-%version.tar.xz
Patch1: lz4-use-shlib.diff
Patch2: lz4-killdate.diff
Patch3: lz4-soversion.diff
#Git-Clone: https://github.com/Cyan4973/lz4
Source: https://github.com/Cyan4973/lz4/archive/r%version.tar.gz
Patch1: lz4-soversion.diff
Patch2: lz4-use-shlib.diff
Patch3: lz4-killdate.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: pkg-config
BuildRequires: xz
%description
LZ4 is a very fast compressor, based on well-known LZ77 (Lempel-Ziv)
algorithm. It is a LZP2 fork and provides better compression ratio
for text files.
LZ4 is a lossless data compression algorithm that is focused on
compression and decompression speed. It belongs to the LZ77
(LempelZiv) family of byte-oriented compression schemes. It is a
LZP2 fork and provides better compression ratio for text files.
This subpackage provides a GPL command-line utility to make use of
the LZ4 algorithm.
@@ -50,9 +48,9 @@ License: BSD-2-Clause
Group: System/Libraries
%description -n %lname
LZ4 is a very fast compressor, based on well-known LZ77 (Lempel-Ziv)
algorithm. It is a LZP2 fork and provides better compression ratio
for text files.
LZ4 is a lossless data compression algorithm that is focused on
compression and decompression speed. It belongs to the LZ77
(LempelZiv) family of byte-oriented compression schemes. It is a
This subpackage contains the (de)compressor code as a shared library.
@@ -63,22 +61,26 @@ Group: Development/Libraries/C and C++
Requires: %lname = %version
%description -n liblz4-devel
LZ4 is a very fast compressor, based on well-known LZ77 (Lempel-Ziv)
algorithm. It is a LZP2 fork and provides better compression ratio
for text files.
LZ4 is a lossless data compression algorithm that is focused on
compression and decompression speed. It belongs to the LZ77
(LempelZiv) family of byte-oriented compression schemes. It is a
This subpackage contains libraries and header files for developing
applications that want to make use of liblz4.
%prep
%setup -qn trunk
%setup -qn %name-r%version
%patch -P 1 -P 2 -P 3 -p1
%build
make %{?_smp_mflags} CFLAGS="%optflags"
# Goddammit, lz4
perl -i -pe 's{^\t@}{\t}g' Makefile */Makefile
make -C lib %{?_smp_mflags} CFLAGS="%optflags"
make -C programs %{?_smp_mflags} CFLAGS="%optflags" lz4 lz4c
%install
make install DESTDIR="%buildroot" LIBDIR="%_libdir"
make install DESTDIR="%buildroot" PREFIX="%_prefix" LIBDIR="%_libdir"
rm -f "%buildroot/%_libdir"/*.a
%post -n %lname -p /sbin/ldconfig
@@ -87,6 +89,7 @@ rm -f "%buildroot/%_libdir"/*.a
%files
%defattr(-,root,root)
%_bindir/lz4*
%_bindir/unlz4
%_mandir/man1/*.1*
%files -n %lname