forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: AMS-2023.104-iimpi-2022b-intelmpi.eb
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
easybuild/easyconfigs/a/AMS/AMS-2023.104-iimpi-2022b-intelmpi.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
easyblock = 'Tarball' | ||
|
||
name = 'AMS' | ||
version = '2023.104' | ||
versionsuffix = '-intelmpi' | ||
|
||
homepage = 'https://www.scm.com/amsterdam-modeling-suite/' | ||
description = """ | ||
The Amsterdam Modeling Suite (AMS) provides a comprehensive set of modules for | ||
computational chemistry and materials science, from quantum mechanics to fluid | ||
thermodynamics. | ||
""" | ||
|
||
toolchain = {'name': 'iimpi', 'version': '2022b'} | ||
|
||
sources = ['ams%(version)s.pc64_linux.intelmpi.bin.tgz'] | ||
checksums = ['c977014f14291f7f210be7e48bc28f71ab0a076a5af257e92f2c873f54d208af'] | ||
|
||
dependencies = [('libGLU', '9.0.2')] | ||
|
||
keepsymlinks = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['atomicdata', 'bin', 'examples'], | ||
} | ||
|
||
# check if license file is installed | ||
# sanity_check_commands = ['dirac check'] | ||
|
||
modextrapaths = { | ||
'AMSHOME': '', | ||
'AMSBIN': 'bin', | ||
'AMSRESOURCES': 'atomicdata', | ||
} | ||
|
||
modextravars = { | ||
# use Intel MPI from EasyBuild | ||
'SCM_USE_LOCAL_IMPI': '1', | ||
} | ||
|
||
modloadmsg = """These environment variables need to be defined before using AMS: | ||
* $SCMLICENSE: path to AMS license file | ||
* $SCM_TMPDIR: path to user scratch directory | ||
""" | ||
|
||
moduleclass = 'chem' |