Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{chem}[foss/2023a] TINKER v8.11.3 #21098

Merged
merged 4 commits into from
Sep 25, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions easybuild/easyconfigs/t/TINKER/TINKER-8.11.3-foss-2023a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
easyblock = 'CMakeMake'

name = 'TINKER'
version = '8.11.3'

homepage = 'https://dasher.wustl.edu/tinker'
description = """The Tinker molecular modeling software is a complete and general package for molecular mechanics
and dynamics, with some special features for biopolymers."""

toolchain = {'name': 'foss', 'version': '2023a'}

source_urls = ['https://dasher.wustl.edu/tinker/downloads/']
sources = [SOURCELOWER_TAR_GZ]
checksums = ['8dfbc9fb8f26742d91139187657e2c905744b0243538f81b75bc04cdc2606ff7']

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

srcdir = 'cmake'

# copy executables into bin directory
test_cmd = 'find -maxdepth 1 -mindepth 1 -type f -executable |xargs -I % cp % ../tinker/bin/ && '
lexming marked this conversation as resolved.
Show resolved Hide resolved
test_cmd += 'cd ../tinker/test/ && '
# run all .run scripts in the test directory
# (ifabp succeeds but exits with a memory error)
test_cmd += 'for x in *.run; do echo "START TEST: $x" && ./$x; done'

postinstallcmds = ['cd %(start_dir)s && cp -a params perl python %(installdir)s']

sanity_check_paths = {
'files': ['lib/libtinker.a'],
'dirs': ['bin', 'params', 'perl', 'python'],
}

# (no sanity_check_commands since all programs require multiple other inputs)

moduleclass = 'chem'
Loading