2009-05-28 04:45:15 +02:00
|
|
|
#
|
|
|
|
# spec file for package mpc (Version 0.6)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2009 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/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
%define debug_package_requires libmpc1 = %{version}-%{release}
|
|
|
|
|
|
|
|
Name: mpc
|
|
|
|
BuildRequires: gmp-devel mpfr-devel
|
|
|
|
License: LGPL v2.1 or later
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
AutoReqProv: on
|
|
|
|
Version: 0.6
|
2009-07-13 21:53:15 +02:00
|
|
|
Release: 4
|
2009-05-28 04:45:15 +02:00
|
|
|
Summary: MPC multiple-precision complex shared library
|
|
|
|
Url: http://www.multiprecision.org/mpc/
|
|
|
|
Source: mpc-%{version}.tar.bz2
|
|
|
|
Patch: mpc-r530.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
MPC is a C library for the arithmetic of complex numbers with
|
|
|
|
arbitrarily high precision and correct rounding of the result. It is
|
|
|
|
built upon and follows the same principles as MPFR.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n libmpc1
|
|
|
|
License: LGPL v2.1 or later
|
|
|
|
Summary: MPC multiple-precision complex shared library
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
AutoReqProv: on
|
|
|
|
|
|
|
|
%description -n libmpc1
|
|
|
|
MPC is a C library for the arithmetic of complex numbers with
|
|
|
|
arbitrarily high precision and correct rounding of the result. It is
|
|
|
|
built upon and follows the same principles as MPFR.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
License: LGPL v2.1 or later
|
|
|
|
Summary: MPC multiple-precision complex library development files
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Requires: libmpc1 = %{version} mpfr-devel
|
|
|
|
AutoReqProv: on
|
|
|
|
PreReq: %install_info_prereq
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
MPC multiple-precision complex library development files.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch
|
|
|
|
|
|
|
|
%build
|
2009-07-13 21:53:15 +02:00
|
|
|
%configure
|
2009-05-28 04:45:15 +02:00
|
|
|
make %{?jobs:-j%jobs}
|
|
|
|
|
|
|
|
%check
|
|
|
|
make check %{?jobs:-j%jobs}
|
|
|
|
|
|
|
|
%install
|
|
|
|
%makeinstall
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libmpc.la
|
|
|
|
|
|
|
|
%post -n libmpc1 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post devel
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
|
|
|
%postun -n libmpc1 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files -n libmpc1
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libmpc.so.1*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc AUTHORS NEWS COPYING.LIB
|
|
|
|
%doc %{_infodir}/mpc.info.gz
|
2009-07-13 21:53:15 +02:00
|
|
|
%{_libdir}/libmpc.a
|
2009-05-28 04:45:15 +02:00
|
|
|
%{_libdir}/libmpc.so
|
|
|
|
/usr/include/mpc.h
|
|
|
|
|
|
|
|
%changelog
|