Pedro Monreal Gonzalez
3d9f187a47
- Ensure neutrality of description. Avoid name repetition in summaries. OBS-URL: https://build.opensuse.org/request/show/713886 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libunwind?expand=0&rev=40
78 lines
2.2 KiB
RPMSpec
78 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package libunwind
|
|
#
|
|
# Copyright (c) 2019 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
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define realver 1.3.1
|
|
Name: libunwind
|
|
Version: 1.3.1
|
|
Release: 0
|
|
Summary: Call chain detection library
|
|
License: MIT
|
|
Group: System/Base
|
|
Url: http://savannah.nongnu.org/projects/libunwind/
|
|
Source0: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{realver}.tar.gz
|
|
Source1: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{realver}.tar.gz.sig
|
|
Source2: %{name}.keyring
|
|
Source3: baselibs.conf
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: lzma-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(atomic_ops)
|
|
ExclusiveArch: %{ix86} ia64 x86_64 %{arm} ppc ppc64 ppc64le aarch64
|
|
|
|
%description
|
|
A C programming interface (API) to determine the call chain of a program.
|
|
|
|
%package devel
|
|
Summary: Headers for the Unwind library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
A C programming interface (API) to determine the call chain of a program.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{realver}
|
|
|
|
%build
|
|
%configure \
|
|
--enable-minidebuginfo
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
%if ! 0%{?qemu_user_space_build}
|
|
# run-coredump-unwind fails
|
|
make check %{?_smp_mflags} || :
|
|
%endif
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -iregex '.*\.l?a$' -delete -print
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/*
|
|
%{_libdir}/%{name}*.so
|
|
%{_libdir}/pkgconfig/%{name}*.pc
|
|
|
|
%changelog
|