134 lines
3.7 KiB
RPMSpec
134 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package xz
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
|
|
Name: xz
|
|
Summary: A Program for Compressing Files
|
|
Version: 5.0.3
|
|
Release: 2
|
|
Group: Productivity/Archiving/Compression
|
|
License: LGPLv2.1+
|
|
Url: http://tukaani.org/lzma/
|
|
Source: http://tukaani.org/xz/%{name}-%{version}.tar.bz2
|
|
Source2: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: pkg-config
|
|
Provides: lzma = %version
|
|
Obsoletes: lzma < %version
|
|
Recommends: %name-lang
|
|
# avoid bootstrapping problem
|
|
%define _binary_payload w9.bzdio
|
|
|
|
%description
|
|
The xz command is a very powerful program for compressing files.
|
|
|
|
* Average compression ratio of LZMA is about 30% better than that of
|
|
gzip, and 15% better than that of bzip2.
|
|
|
|
* Decompression speed is only little slower than that of gzip, being
|
|
two to five times faster than bzip2.
|
|
|
|
* In fast mode, compresses faster than bzip2 with a comparable
|
|
compression ratio.
|
|
|
|
* Achieving the best compression ratios takes four to even twelve
|
|
times longer than with bzip2. However. this doesn't affect
|
|
decompressing speed.
|
|
|
|
* Very similar command line interface to what gzip and bzip2 have.
|
|
|
|
|
|
%lang_package
|
|
%package -n liblzma5
|
|
License: LGPLv2.1+
|
|
Summary: LZMA library
|
|
Group: System/Libraries
|
|
|
|
%description -n liblzma5
|
|
Library for encoding/decoding LZMA files.
|
|
|
|
%package devel
|
|
License: LGPLv2.1+
|
|
Summary: Development package for the LZMA library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: liblzma5 = %{version}
|
|
Provides: lzma-devel = %version
|
|
Obsoletes: lzma-devel < %version
|
|
Provides: lzma-alpha-devel = %version
|
|
Obsoletes: lzma-alpha-devel < %version
|
|
|
|
%description devel
|
|
This package contains the header files and libraries needed for
|
|
compiling programs using the LZMA library.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
AUTOPOINT=true autoreconf -fiv
|
|
%if %{do_profiling}
|
|
profiledir=$(mktemp -d)
|
|
trap "rm -rf $profiledir" EXIT
|
|
export CFLAGS="%optflags %{cflags_profile_generate}=$profiledir"
|
|
%endif
|
|
%configure --libdir=/%{_lib} --disable-static --with-pic --docdir=%_docdir/%name
|
|
make %{?_smp_mflags}
|
|
%if %{do_profiling}
|
|
time make check
|
|
make clean
|
|
export CFLAGS="%optflags %{cflags_profile_feedback}=$profiledir"
|
|
%configure --libdir=/%{_lib} --disable-static --with-pic --docdir=%_docdir/%name
|
|
make %{?_smp_mflags}
|
|
%endif
|
|
|
|
%check
|
|
time make check
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
%{__mkdir_p} %{buildroot}%{_libdir}
|
|
%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/liblzma.so) %{buildroot}%{_libdir}/liblzma.so
|
|
%{__mv} -v %{buildroot}/%{_lib}/pkgconfig %{buildroot}%{_libdir}
|
|
%{__rm} -v %{buildroot}/%{_lib}/liblzma.{so,la}
|
|
%find_lang %{name}
|
|
|
|
%post -n liblzma5 -p /sbin/ldconfig
|
|
|
|
%postun -n liblzma5 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%_docdir/%name
|
|
%{_bindir}/*
|
|
%{_mandir}/man?/*
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%files -n liblzma5
|
|
%defattr(-, root, root)
|
|
/%{_lib}/lib*.so.5*
|
|
|
|
%files devel
|
|
%defattr(-, root, root)
|
|
%{_includedir}/*.h
|
|
%{_includedir}/lzma
|
|
%{_libdir}/lib*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%changelog
|