Merge branch 'it4i-barbora'

This commit is contained in:
Jakub Kropacek 2022-11-10 20:27:33 +01:00
commit 1a69c0c727

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',
}