libunwind/libunwind.spec

74 lines
1.9 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libunwind
#
# Copyright (c) 2022 SUSE LLC
#
# 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/
#
Name: libunwind
Version: 1.6.2
Release: 0
Summary: Call chain detection library
License: MIT
Group: System/Base
URL: https://savannah.nongnu.org/projects/libunwind/
Source0: https://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz
Source1: https://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.gz.sig
Source2: %{name}.keyring
Source3: baselibs.conf
BuildRequires: gcc-c++
BuildRequires: lzma-devel
BuildRequires: pkgconfig
ExcludeArch: s390
%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
%build
%configure \
--enable-minidebuginfo
%make_build
%check
# run-coredump-unwind fails
%make_build check || :
%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