Skip to content

Commit

Permalink
Merge pull request easybuilders#20286 from WilleBell/20240404144802_n…
Browse files Browse the repository at this point in the history
…ew_pr_CREST20240319

{chem}[gfbf/2023a] CREST v20240319
  • Loading branch information
verdurin authored Apr 9, 2024
2 parents 1a4de14 + 664bb89 commit 166587c
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions easybuild/easyconfigs/c/CREST/CREST-20240319-gfbf-2023a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Author: Jasper Grimm (UoY)
# Update to 2.12:
# Author: J. Sassmannshausen (Imperial College London)

easyblock = 'CMakeMake'

name = 'CREST'
version = '20240319'
_commit = '2719412edf8bb606cebdd4cd6bbb4cdbd249e1e5'

homepage = 'https://xtb-docs.readthedocs.io/en/latest/crest.html'
description = """CREST is an utility/driver program for the xtb program. Originally it was designed
as conformer sampling program, hence the abbreviation Conformer–Rotamer Ensemble Sampling Tool,
but now offers also some utility functions for calculations with the GFNn–xTB methods. Generally
the program functions as an IO based OMP scheduler (i.e., calculations are performed by the xtb
program) and tool for the creation and analysation of structure ensembles.
"""

toolchain = {'name': 'gfbf', 'version': '2023a'}
toolchainopts = {'opt': True, 'optarch': True, 'extra_fflags': '-ffree-line-length-none'}

separate_build_dir = False

github_account = 'grimme-lab'
source_urls = [GITHUB_LOWER_SOURCE]
sources = [{'download_filename': '%s.tar.gz' % _commit, 'filename': SOURCE_TAR_GZ}]
checksums = ['770b7ca72bc47bc4e1ffd8ca56566df7b03f4d3b702b04ec6b83bad9a125884d']

builddependencies = [('CMake', '3.26.3')]

dependencies = [('xtb', '6.6.1')] # required to run the program

# Simple test command just to check if the program is working:
test_cmd = 'export PATH=%%(builddir)s/%%(namelower)s-%s:$PATH && ' % _commit
test_cmd += 'cd %%(builddir)s/%%(namelower)s-%s/examples/expl-0/ && ./run.sh ' % _commit

sanity_check_paths = {
'files': ['bin/%s' % name.lower()],
'dirs': [],
}

sanity_check_commands = ["crest -h", "crest --cite"]

moduleclass = 'chem'

0 comments on commit 166587c

Please sign in to comment.