mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00

modified: archive/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid-single-CUDA-7.5-PLUMED-2.3b.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2015b-hybrid-single-cuda.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-single-cuda.eb modified: archive/p/PLUMED/PLUMED-2.3.0-foss-2016a.eb modified: e/EasyBuild/EasyBuild-4.1.0.eb modified: g/GROMACS/GROMACS-5.1.4-foss-2017a-hybrid-single-PLUMED.eb modified: l/libmatheval/libmatheval-1.1.8-foss-2017a.eb new file: o/OVITO/OVITO-3.0.0.628.eb new file: o/OVITO/OVITO-3.0.0.794-basic.eb modified: o/OpenMPI/OpenMPI-2.0.1-iccifort-2017.1.132-GCC-5.4.0-2.26.eb modified: o/OpenMPI/OpenMPI-2.0.1.eb modified: p/PSBLAS/PSBLAS-ext-1.0-4.eb modified: p/Py/Py-2.7.old.eb modified: p/pscom/pscom-5.0.48-1.eb modified: s/spGPU/spGPU-master.eb deleted: o/OVITO/OVITO-3.0.0.eb
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
# by Ward Poelmans <wpoely86@gmail.com>
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PLUMED'
|
|
version = '2.3.0'
|
|
|
|
homepage = 'http://www.plumed-code.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': 'foss', 'version': '2016a'}
|
|
toolchainopts = {'usempi': 'True'}
|
|
|
|
source_urls = ['https://github.com/plumed/plumed2/archive/']
|
|
sources = ['v%(version)s.tar.gz']
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.8'),
|
|
('GSL', '2.1'),
|
|
('libmatheval', '1.1.8', '', True),
|
|
]
|
|
|
|
preconfigopts = 'env FC=$MPIF90 LIBS="$LIBLAPACK $LIBS" '
|
|
configopts = ' --exec-prefix=%(installdir)s --enable-gsl'
|
|
prebuildopts = 'source sourceme.sh && '
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/plumed',
|
|
'lib/libplumedKernel.%s' %
|
|
SHLIB_EXT,
|
|
'lib/libplumed.%s' %
|
|
SHLIB_EXT],
|
|
'dirs': ['lib/plumed']}
|
|
|
|
modextrapaths = {
|
|
'PLUMED_KERNEL': 'lib/libplumedKernel.%s' % SHLIB_EXT,
|
|
'PLUMED_ROOT': 'lib/plumed',
|
|
}
|
|
|
|
moduleclass = 'chem'
|