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

new file: o/OpenFOAM/OpenFOAM-v2012-foss-2020a.eb new file: o/OpenFOAM/OpenFOAM-v2106-foss-2021a.eb
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
##
|
|
# Author: Robert Mijakovic <robert.mijakovic@lxp.lu>
|
|
##
|
|
name = 'OpenFOAM'
|
|
version = 'v2106'
|
|
|
|
homepage = 'https://www.openfoam.com/'
|
|
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': '2021a'}
|
|
toolchainopts = {'cstd': 'c++11'}
|
|
|
|
source_urls = ['https://sourceforge.net/projects/openfoam/files/%(version)s/']
|
|
sources = [SOURCE_TGZ]
|
|
patches = [
|
|
('OpenFOAM-v2012-cleanup.patch', 1),
|
|
'OpenFOAM-v1906-wmake-ompi.patch',
|
|
]
|
|
checksums = [
|
|
'11e41e5b9a253ef592a8f6b79f6aded623b28308192d02cec1327078523b5a37', # OpenFOAM-v2106.tgz
|
|
'cdd2597a1ac1448e9bd33a364a8dfe17f51cc9ab5a8e0ab67cf92bba3ed9da43', # OpenFOAM-v2012-cleanup.patch
|
|
'518e27683c5c41400cfbc17b31effa50b31b25916dccbf85b18b0b955f642505', # OpenFOAM-v1906-wmake-ompi.patch
|
|
]
|
|
|
|
dependencies = [
|
|
('libreadline', '8.1'),
|
|
('ncurses', '6.2'),
|
|
# OpenFOAM requires 64 bit METIS using 32 bit indexes (array indexes)
|
|
('METIS', '5.1.0'),
|
|
('SCOTCH', '6.1.0'),
|
|
('CGAL', '4.14.3'),
|
|
('ParaView', '5.9.1', '-mpi'),
|
|
('gnuplot', '5.4.2'),
|
|
]
|
|
|
|
builddependencies = [
|
|
('Bison', '3.7.6'),
|
|
('CMake', '3.20.1'),
|
|
('flex', '2.6.4'),
|
|
]
|
|
|
|
moduleclass = 'cae'
|