modified: o/OVITO/OVITO-3.7.11-GCCcore-11.3.0-pro.eb

This commit is contained in:
easybuild 2022-11-10 20:27:20 +01:00
parent fabd9e7429
commit 41fa6f2135

View File

@ -19,11 +19,20 @@ dependencies = [
('Qt5', '5.15.5'),
]
import os
if os.environ.get("CLUSTERNAME") in ["BARBORA"]:
postinstallcmds = [
'rm %(installdir)s/lib/ovito/libcrypto.so.1.1',
'ln -s /lib64/libcrypto.so.1.1 %(installdir)s/lib/ovito/',
]
sanity_check_paths = {
'files': ['bin/ovito'],
'dirs': [],
'files': ['bin/ovito', 'bin/ovitos', 'bin/qt.conf'],
'dirs': ['bin', 'include', 'lib', 'share'],
}
sanity_check_commands = ['ovito --nogui --noviewports --help']
modextravars = {
'OVITO_LICENSING_VERBOSE': '1',
}