mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 15:32:11 +01:00

new file: l/LLVM/LLVM-6.0.0-GCCcore-9.3.0.eb new file: l/LLVM/LLVM-8.0.1-GCCcore-9.3.0.eb new file: m/Mako/Mako-1.0.6-GCCcore-9.3.0-Python-2.7.18.eb new file: m/Mesa/Mesa-18.1.1-foss-2020a.eb new file: m/Mesa/Mesa-18.3.6-GCCcore-9.3.0.eb modified: o/OpenFOAM/OpenFOAM-7-foss-2020a.eb modified: p/ParaView/ParaView-5.6.2-foss-2020a-Python-3.7.8-mpi.eb modified: r/R/R-4.0.0-foss-2020a.eb
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
# JH 2020
|
|
|
|
name = 'OpenFOAM'
|
|
local_commit = '5e743dc'
|
|
version = '7'
|
|
#versionsuffix = '-20200508'
|
|
|
|
homepage = 'https://www.openfoam.org/'
|
|
description = """OpenFOAM is a free, open source CFD software package.
|
|
OpenFOAM has an extensive range of features to solve anything from complex fluid flows
|
|
involving chemical reactions, turbulence and heat transfer,
|
|
to solid dynamics and electromagnetics."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2020a'}
|
|
toolchainopts = {'cstd': 'c++11', 'usempi': True}
|
|
|
|
source_urls = ['https://github.com/OpenFOAM/OpenFOAM-%(version_major)s/archive']
|
|
sources = [{
|
|
'download_filename': '%s.tar.gz' % local_commit,
|
|
'filename': 'OpenFOAM-%(version)s%(versionsuffix)s.tar.gz',
|
|
}]
|
|
patches = [
|
|
'OpenFOAM-7-20200508-cleanup.patch',
|
|
'OpenFOAM-%(version)s-mpi-compilation.patch',
|
|
]
|
|
checksums = [
|
|
'e91cc1355cdfc21b953e704d22ccd0e01a32bb11775cbbdd8105cf4364b498af', # OpenFOAM-7-20200508.tar.gz
|
|
'91f78714058a020da314b1311beb2c3cc2f4a817d02b1495c43b57156774cfa6', # OpenFOAM-7-20200508-cleanup.patch
|
|
'9f2af8f67a57a187f68aadaa99bc99f1cfbfe41086e5839a57e1bb4e41b3762c', # OpenFOAM-7-mpi-compilation.patch
|
|
]
|
|
|
|
dependencies = [
|
|
('libreadline', '8.0'),
|
|
('ncurses', '6.2'),
|
|
# OpenFOAM requires 64 bit METIS using 32 bit indexes (array indexes)
|
|
('METIS', '5.1.0'),
|
|
('SCOTCH', '6.0.9'),
|
|
('CGAL', '4.14.1', '-Python-3.7.8'),
|
|
('ParaView', '5.6.2', '-Python-3.7.8-mpi'),
|
|
]
|
|
|
|
builddependencies = [
|
|
('Bison', '3.5.3'),
|
|
('CMake', '3.16.4'),
|
|
('flex', '2.6.4'),
|
|
]
|
|
|
|
moduleclass = 'cae'
|