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

new file: a/arpack-ng/arpack-ng-3.8.0-intel-2022a.eb new file: c/Code_Aster/Code_Aster-14.6-Python-3.11.3-GCC-12.3.0.eb new file: d/DFTB+/DFTB+-23.1-intel-2022a.eb new file: d/dftd3-lib/dftd3-lib-0.10-GCC-11.3.0.eb new file: d/dftd3-lib/dftd3-lib-0.9.2-GCC-11.3.0.eb new file: d/dftd3-lib/dftd3-lib-0.9.2-GCC-12.2.0.eb new file: e/ELPA/ELPA-2022.05.001-intel-2022b.eb new file: e/ELSI/ELSI-2.9.1-intel-2022a.eb new file: h/HDF5/HDF5-1.10.3-foss-2022b.eb new file: h/HDF5/HDF5-1.10.3.patch new file: m/MEDCoupling/MEDCOUPLING-9.10.0-foss-2022b.eb new file: m/medfile/medfile-4.1.1-foss-2021b.eb new file: m/medfile/medfile-4.1.1-foss-2022b.eb new file: o/ORCA/ORCA-5.0.3-foss-2022a.eb new file: o/ORCA/ORCA-5.0.3-foss-2022b.eb new file: o/OVITO/OVITO-3.9.2-GCCcore-12.2.0-pro.eb new file: o/OpenMPI/OpenMPI-4.1.0-GCC-10.2.0.eb new file: p/Python/Python-3.11.3-GCCcore-12.3.0-test.eb new file: p/Python/Python-3.8.6-GCCcore-10.2.0-alpha.eb new file: p/Python/Python-3.8.6-GCCcore-9.3.0-alpha.eb new file: s/SALOME_CONFIGURATION/SALOME_CONFIGURATION-9.10.0.eb new file: t/tblite/tblite-0.3.0-intel-2022a.eb new file: t/tblite/tblite-0.3.0-intel-2022b.eb new file: x/XZ/XZ-5.4.2-GCCcore-12.3.0.eb
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
easyblock = 'Tarball'
|
|
|
|
name = 'OVITO'
|
|
version = '3.9.2'
|
|
versionsuffix = '-pro'
|
|
|
|
homepage = 'https://www.ovito.org/'
|
|
description = """OVITO is a scientific visualization and analysis software for atomistic and particle simulation data."""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
|
|
|
|
source_urls = ['https://www.ovito.org/download/master/']
|
|
sources = ['ovito-pro-%(version)s-x86_64.tar.xz']
|
|
checksums = ['ff09f2e19288dd58c3affcf7f35090446275dc65493364da0f8c5478d8306c40']
|
|
|
|
dependencies = [
|
|
('Qt5', '5.15.7'),
|
|
]
|
|
|
|
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', 'bin/ovitos', 'bin/qt.conf'],
|
|
'dirs': ['bin', 'include', 'lib', 'share'],
|
|
}
|
|
|
|
#sanity_check_commands = ['ovito --nogui --noviewports --help']
|
|
|
|
modextravars = {
|
|
'OVITO_LICENSING_VERBOSE': '1',
|
|
}
|
|
|
|
moduleclass = 'vis'
|