SHA256
3
0
forked from pool/mpfr
mpfr/mpfr.spec
Richard Biener cd28bf3af2 Accepting request 40101 from home:adrianSuSE:branches:devel:libraries:c_c++
Copy from home:adrianSuSE:branches:devel:libraries:c_c++/mpfr via accept of submit request 40101 revision 2.
Request was accepted with message:

OBS-URL: https://build.opensuse.org/request/show/40101
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/mpfr?expand=0&rev=10
2010-05-17 08:23:08 +00:00

149 lines
3.7 KiB
RPMSpec

#
# spec file for package mpfr (Version 2.4.2)
#
# Copyright (c) 2010 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 libmpfr1 = %{version}-%{release}
Name: mpfr
BuildRequires: gmp-devel
License: LGPLv2.1+
Group: Development/Libraries/C and C++
AutoReqProv: on
Version: 2.4.2
Release: 2
Summary: The MPFR multiple-precision floating-point library
Url: http://www.mpfr.org/
Source: mpfr-%{version}.tar.bz2
Source2: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The MPFR library is a C library for multiple-precision floating-point
computations with exact rounding (also called correct rounding). It is
based on the GMP multiple-precision library.
The main goal of MPFR is to provide a library for multiple-precision
floating-point computation which is both efficient and has a
well-defined semantics. It copies the good ideas from the ANSI/IEEE-754
standard for double-precision floating-point arithmetic (53-bit
mantissa).
Authors:
--------
Guillaume Hanrot
Paul Zimmermann
Vincent Lefèvre
Patrick Pélissier
%package -n libmpfr1
License: LGPLv2.1+
Summary: MPFR multiple-precision floating-point computation shared library
Group: Development/Libraries/C and C++
AutoReqProv: on
# in openSUSE 10.2 and 10.3 the shared library was in the mpfr package itself
Provides: mpfr = 2.3.0
Obsoletes: mpfr < 2.3.0
%description -n libmpfr1
The MPFR library is a C library for multiple-precision floating-point
computations with exact rounding (also called correct rounding). It is
based on the GMP multiple-precision library.
Authors:
--------
Guillaume Hanrot
Paul Zimmermann
Vincent Lefèvre
Patrick Pélissier
%package devel
License: LGPLv2.1+
Summary: MPFR multiple-precision floating-point library development files
Group: Development/Libraries/C and C++
Requires: libmpfr1 = %{version} gmp-devel
Provides: gmp-devel:/usr/lib/libmpfr.a
AutoReqProv: on
PreReq: %install_info_prereq
%description devel
MPFR multiple-precision floating-point library development files
Authors:
--------
Guillaume Hanrot
Paul Zimmermann
Vincent Lefèvre
Patrick Pélissier
%prep
%setup -q
%build
%configure \
%if 0%{suse_version} > 1000
%ifnarch %sparc hppa
--enable-thread-safe \
%endif
%endif
--enable-shared \
--docdir=%{_docdir}/mpfr
make %{?jobs:-j%jobs}
%check
make check %{?jobs:-j%jobs}
%install
%makeinstall
rm ${RPM_BUILD_ROOT}%{_libdir}/lib*.la
%post -n libmpfr1
%run_ldconfig
%post devel
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%postun -n libmpfr1
%run_ldconfig
%postun devel
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%clean
rm -rf $RPM_BUILD_ROOT
%files -n libmpfr1
%defattr(-,root,root)
%{_libdir}/libmpfr.so.1*
%files devel
%defattr(-,root,root)
%doc %{_docdir}/mpfr
%doc %{_infodir}/mpfr.info.gz
%{_libdir}/libmpfr.a
%{_libdir}/libmpfr.so
%{_prefix}/include/mpf2mpfr.h
%{_prefix}/include/mpfr.h
%changelog