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

modified: d/Dakota/Dakota-6.15.0-intel-2021b.eb new file: e/Extrae/Extrae-3.8.3-gompi-2021a.eb new file: f/FoX/FoX-4.1.2-intel-2020b.eb new file: g/GROMACS/GROMACS-2022-fosscuda-2020b.eb new file: h/HDF5/HDF5-1.10.7-gompi-2021a.eb new file: l/libxc/libxc-5.1.3-intel-2020b.eb new file: p/PLUMED/PLUMED-2.8.0-fosscuda-2020b.eb modified: p/Paraver/Paraver-4.10.0-foss-2021a.eb new file: q/QMCPACK/QMCPACK-3.14.0-foss-2021a-Python-3.9.5.eb new file: q/QMCPACK/QMCPACK-3.14.0-intel-2020b-Python-3.8.6-test.eb new file: q/QMCPACK/QMCPACK-3.14.0-intel-2020b-Python-3.8.6.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-7.0-intel-2020b-forQMCPACK.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-7.0-intel-2020b-test.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-intel-2020b-forQMCPACK-fix-UtilXlib-Makefile-tab.patch new file: s/SDE/SDE-9.0.0.eb
60 lines
2.1 KiB
Plaintext
60 lines
2.1 KiB
Plaintext
# IT4Innovations
|
|
# LK 2021
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PLUMED'
|
|
version = '2.8.0'
|
|
|
|
homepage = 'https://www.plumed.org'
|
|
description = """PLUMED is an open source library for free energy calculations in molecular systems which
|
|
works together with some of the most popular molecular dynamics engines. Free energy calculations can be
|
|
performed as a function of many order parameters with a particular focus on biological problems, using
|
|
state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD.
|
|
The software, written in C++, can be easily interfaced with both fortran and C/C++ codes.
|
|
"""
|
|
|
|
toolchain = {'name': 'fosscuda', 'version': '2020b'}
|
|
toolchainopts = {'usempi': 'True'}
|
|
|
|
source_urls = ['https://github.com/plumed/plumed2/releases/download/v%(version)s/']
|
|
sources = [SOURCE_TGZ]
|
|
checksums = ['24b243c531fa83752be5e54f5f0b677164855da539bc2b2c5b00dcc9f192aa82']
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11'),
|
|
('GSL', '2.6'),
|
|
('Python', '3.8.6'),
|
|
('SciPy-bundle', '2020.11'),
|
|
('Boost', '1.74.0'),
|
|
]
|
|
|
|
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
|
|
configopts = '--exec-prefix=%(installdir)s --enable-gsl --enable-modules=all --enable-python '
|
|
configopts += '--enable-boost_graph --enable-boost_serialization '
|
|
configopts += '--enable-asmjit '
|
|
prebuildopts = 'source sourceme.sh && '
|
|
|
|
# make sure that ld.gold linker is used
|
|
# required to work around problems like "ld: BFD (GNU Binutils) 2.30 assertion fail elf.c:3564"
|
|
# (problem with intel build but maintain consistency between easyconfigs)
|
|
buildopts = 'LD_RO="ld.gold -r -o"'
|
|
|
|
# install path for PLUMED libraries must be included in $LD_LIBRARY_PATH when Python bindings get built/installed
|
|
preinstallopts = 'LD_LIBRARY_PATH="%(installdir)s/lib:$LD_LIBRARY_PATH" '
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/plumed', 'lib/libplumedKernel.%s' % SHLIB_EXT, 'lib/libplumed.%s' % SHLIB_EXT],
|
|
'dirs': [],
|
|
}
|
|
|
|
sanity_check_commands = ["python -c 'import plumed'"]
|
|
|
|
modextrapaths = {
|
|
'PLUMED_KERNEL': 'lib/libplumedKernel.%s' % SHLIB_EXT,
|
|
'PLUMED_ROOT': 'lib/plumed',
|
|
'PYTHONPATH': 'lib/plumed/python',
|
|
}
|
|
|
|
moduleclass = 'chem'
|