easyconfigs-it4i/d/DualSPHysics/DualSPHysics-5.0.175-GCC-11.2.0.eb
Lukas Krupcik 5812aff4e8 new file: archive/s/sqsgenerator/sqsgenerator-0.1-intel-compilers-2021.4.0-Python-3.9.6.eb
new file:   b/Blender/Blender-3.1.0-GCC-10.3.0.eb
	new file:   b/Boost/Boost-1.77.0-GCC-10.2.0-Python-3.8.6.eb
	new file:   b/Boost/Boost-1.77.0-intel-compilers-2021.4.0-Python-3.9.6.eb
	modified:   c/CUDAcore/CUDAcore-11.6.0.eb
	new file:   d/DualSPHysics/DualSPHysics-5.0.175-GCC-11.2.0-CUDA-11.6.0.eb
	new file:   d/DualSPHysics/DualSPHysics-5.0.175-GCC-11.2.0.eb
	new file:   d/DualSPHysics/DualSPHysics-5.0.175.patch
	new file:   h/hwloc/hwloc-1.11.7-GCC-10.2.0.eb
	modified:   o/ORCA/ORCA-4.2.0-OpenMPI-3.1.4.eb
	modified:   o/ORCA/ORCA-4.2.1-OpenMPI-3.1.4.eb
	new file:   o/OpenMPI/OpenMPI-3.1.4-GCC-10.2.0.eb
	new file:   q/QEMU/QEMU-6.2.0-VDE2.eb
	new file:   s/sqsgenerator/sqsgenerator-0.0.5-GCC-10.2.0-Python-3.8.6.eb
	new file:   s/sqsgenerator/sqsgenerator-0.1-GCC-10.2.0-Python-3.8.6.eb
2022-03-30 11:27:29 +02:00

53 lines
1.7 KiB
Plaintext

##
# Authors: Eduardo Miguel Firvida Donestevez <efirvida@gmail.com>
# Robert Mijakovic <robert.mijakovic@lxp.lu>
##
easyblock = 'CMakeMake'
name = 'DualSPHysics'
version = '5.0.175'
homepage = 'https://dual.sphysics.org/'
description = """DualSPHysics is based on the Smoothed Particle Hydrodynamics model named SPHysics.
The code is developed to study free-surface flow phenomena where Eulerian methods
can be difficult to apply, such as waves or impact of dam-breaks on off-shore
structures. DualSPHysics is a set of C++, CUDA and Java codes designed to deal
with real-life engineering problems."""
toolchain = {'name': 'GCC', 'version': '11.2.0'}
source_urls = ['https://github.com/DualSPHysics/DualSPHysics/archive/refs/tags/']
sources = ['v%(version)s.tar.gz']
checksums = ['d65bb7b8b4a21582091a534142348e46cff0a288a97ef86643bc2dde15637575']
srcdir = 'src/source'
builddependencies = [
('CMake', '3.21.1'),
]
separate_build_dir = True
buildopts = " && chmod +x %(builddir)s/%(name)s-%(version)s/bin/linux/*_linux64"
install_cmd = "mkdir -p %(installdir)s/bin && "
install_cmd += "cp -r %(builddir)s/%(name)s-%(version)s/bin/linux/* %(installdir)s/bin && "
install_cmd += "cp -r %(builddir)s/%(name)s-%(version)s/src/lib/linux_gcc %(installdir)s/lib"
local_bins = ['GenCase', 'PartVTK', 'IsoSurface', 'MeasureTool', 'GenCase_MkWord',
'DualSPHysics4.0_LiquidGas', 'DualSPHysics4.0_LiquidGasCPU', 'DualSPHysics5.0',
'DualSPHysics5.0CPU', 'DualSPHysics5.0_NNewtonian', 'DualSPHysics5.0_NNewtonianCPU']
sanity_check_paths = {
'files': ['bin/%s_linux64' % x for x in local_bins],
'dirs': ["lib"],
}
sanity_check_commands = ['%s_linux64 -h' % x for x in local_bins]
moduleclass = 'cae'