mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 02:00:59 -06:00
update redhat packaging
- deal with module renaming - deal upstream with module renaming and additions - use boost 1.48 only on rhel6. rhel7 supplies a newer boost by default.
This commit is contained in:
parent
0155535079
commit
0fe722068a
@ -4,63 +4,63 @@
|
||||
|
||||
%define tag rc4
|
||||
|
||||
Name: opm-autodiff
|
||||
Version: 2013.10
|
||||
Name: opm-simulators
|
||||
Version: 2015.10
|
||||
Release: 0
|
||||
Summary: Open Porous Media - core library
|
||||
License: GPL-3.0
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: http://www.opm-project.org/
|
||||
Source0: https://github.com/OPM/%{name}/archive/release/%{version}/%{tag}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
BuildRequires: blas-devel lapack-devel dune-common-devel
|
||||
BuildRequires: git suitesparse-devel doxygen bc boost148-devel
|
||||
BuildRequires: opm-parser-devel opm-core-devel dune-cornerpoint-devel
|
||||
BuildRequires: blas-devel lapack-devel dune-common-devel opm-output-devel
|
||||
BuildRequires: git suitesparse-devel doxygen bc
|
||||
BuildRequires: opm-parser-devel opm-core-devel opm-grid-devel
|
||||
BuildRequires: tinyxml-devel dune-istl-devel eigen3-devel ert.ecl-devel
|
||||
%{?el6:BuildRequires: cmake28 devtoolset-2}
|
||||
%{!?el6:BuildRequires: cmake gcc gcc-c++}
|
||||
%{?el6:BuildRequires: cmake28 devtoolset-2 boost148-devel}
|
||||
%{!?el6:BuildRequires: cmake gcc gcc-c++ boost-devel}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Requires: libopm-autodiff1 = %{version}
|
||||
Requires: libopm-simulators1 = %{version}
|
||||
|
||||
%description
|
||||
The Open Porous Media (OPM) initiative provides a set of open-source tools centered around the simulation of flow and transport of fluids in porous media. The goal of the initiative is to establish a sustainable environment for the development of an efficient and well-maintained software suite.
|
||||
|
||||
%package -n libopm-autodiff1
|
||||
%package -n libopm-simulators1
|
||||
Summary: Open Porous Media - automatic differentiation library
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libopm-autodiff1
|
||||
%description -n libopm-simulators1
|
||||
The Open Porous Media (OPM) initiative provides a set of open-source tools centered around the simulation of flow and transport of fluids in porous media. The goal of the initiative is to establish a sustainable environment for the development of an efficient and well-maintained software suite.
|
||||
|
||||
%package devel
|
||||
Summary: Development and header files for opm-autodiff
|
||||
Summary: Development and header files for opm-simulators
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libopm-autodiff1 = %{version}
|
||||
Requires: libopm-simulators1 = %{version}
|
||||
|
||||
%description devel
|
||||
This package contains the development and header files for opm-autodiff
|
||||
This package contains the development and header files for opm-simulators
|
||||
|
||||
%package doc
|
||||
Summary: Documentation files for opm-autodiff
|
||||
Summary: Documentation files for opm-simulators
|
||||
Group: Documentation
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
This package contains the documentation files for opm-autodiff
|
||||
This package contains the documentation files for opm-simulators
|
||||
|
||||
%package bin
|
||||
Summary: Applications in opm-autodiff
|
||||
Summary: Applications in opm-simulators
|
||||
Group: Scientific
|
||||
Requires: libopm-autodiff1 = %{version}
|
||||
Requires: libopm-simulators1 = %{version}
|
||||
|
||||
%description bin
|
||||
This package contains the applications for opm-autodiff
|
||||
This package contains the applications for opm-simulators
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-release-%{version}-%{tag}
|
||||
|
||||
%build
|
||||
%{?el6:scl enable devtoolset-2 bash}
|
||||
%{?el6:cmake28} %{?!el6:cmake} -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%{_prefix} -DCMAKE_INSTALL_DOCDIR=share/doc/%{name}-%{version} -DUSE_RUNPATH=OFF %{?el6:-DCMAKE_CXX_COMPILER=/opt/rh/devtoolset-2/root/usr/bin/g++ -DCMAKE_C_COMPILER=/opt/rh/devtoolset-2/root/usr/bin/gcc} -DBOOST_LIBRARYDIR=%{_libdir}/boost148 -DBOOST_INCLUDEDIR=/usr/include/boost148
|
||||
%{?el6:cmake28} %{?!el6:cmake} -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%{_prefix} -DCMAKE_INSTALL_DOCDIR=share/doc/%{name}-%{version} -DUSE_RUNPATH=OFF %{?el6:-DCMAKE_CXX_COMPILER=/opt/rh/devtoolset-2/root/usr/bin/g++ -DCMAKE_C_COMPILER=/opt/rh/devtoolset-2/root/usr/bin/gcc -DBOOST_LIBRARYDIR=%{_libdir}/boost148 -DBOOST_INCLUDEDIR=%{_includedir}/boost148}
|
||||
make
|
||||
|
||||
%install
|
||||
@ -70,14 +70,14 @@ make install-html DESTDIR=${RPM_BUILD_ROOT}
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%post -n libopm-autodiff1 -p /sbin/ldconfig
|
||||
%post -n libopm-simulators1 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libopm-autodiff1 -p /sbin/ldconfig
|
||||
%postun -n libopm-simulators1 -p /sbin/ldconfig
|
||||
|
||||
%files doc
|
||||
%{_docdir}/*
|
||||
|
||||
%files -n libopm-autodiff1
|
||||
%files -n libopm-simulators1
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/*.so.*
|
||||
|
Loading…
Reference in New Issue
Block a user