# # spec file for package linbox # # Copyright (c) 2018 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 http://bugs.opensuse.org/ # %bcond_without openblas Name: linbox %define lname liblinbox0 Version: 1.5.2 Release: 0 Summary: C++ library for computation with matrices over ints and finite fields License: LGPL-2.1-or-later Group: Productivity/Scientific/Math Url: http://linalg.org/ Source: https://github.com/linbox-team/linbox/releases/download/v%version/linbox-%version.tar.gz Patch1: 0001-remove-unnecessary-double-template-fixing-gcc-8.1-co.patch BuildRequires: autoconf >= 2.61 BuildRequires: automake >= 1.8 BuildRequires: gcc-c++ BuildRequires: gmp-devel BuildRequires: iml-devel BuildRequires: libm4ri-devel BuildRequires: libm4rie-devel BuildRequires: libtool BuildRequires: mpfr-devel BuildRequires: ntl-devel %if %{with openblas} BuildRequires: openblas-devel %else BuildRequires: blas-devel BuildRequires: cblas-devel %endif BuildRequires: pkgconfig(fflas-ffpack) >= 2.3.0 BuildRoot: %{_tmppath}/%{name}-%{version}-build %description LinBox is a C++ template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields. %package -n %lname Summary: C++ library for computation with matrices over ints and finite fields Group: System/Libraries %description -n %lname LinBox is a C++ template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields. %package devel Summary: Development files for LinBox, a library for computation over finite fields Group: Development/Libraries/C and C++ Requires: %lname = %version %description devel LinBox is a C++ template library for exact, high-performance linear algebra computation with dense, sparse, and structured matrices over the integers and over finite fields. This subpackage contains the include files and library links for developing against the Givaro library. %prep %setup -q %patch -P 1 -p1 %build autoreconf -fi %configure --disable-static \ %ifarch %ix86 --disable-sse --disable-sse2 \ %endif --disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 \ --disable-avx --disable-avx2 --disable-fma --disable-fma4 make %{?_smp_mflags} %install %make_install rm -f "%buildroot/%_libdir"/*.la %post -n %lname -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig %files -n %lname %defattr(-,root,root) %_libdir/liblinbox.so.0* %files devel %defattr(-,root,root) %_bindir/*-config %_includedir/%name/ %_libdir/liblinbox.so %_libdir/pkgconfig/*.pc %_mandir/man1/*.1* %doc COPYING* %changelog