cromwell: add v85 (#38427)

Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
This commit is contained in:
George Young 2023-06-26 14:08:34 +01:00 committed by GitHub
parent aa3744299b
commit 134dceb055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,19 +10,24 @@
class Cromwell(Package):
"""Cromwell is a Workflow Management System geared towards scientific
workflows.
"""
workflows"""
homepage = "https://cromwell.readthedocs.io/"
url = "https://github.com/broadinstitute/cromwell/releases/download/44/cromwell-44.jar"
version(
"85",
sha256="100f6c61df72b4079b3ad0f03e8f73e6e2c0afe99d212ec8d42faf4bd4de1e23",
expand=False,
)
version(
"44",
sha256="8b411673f6b3c835c6031db3094a7404b9a371133794046fd295719d61e56db0",
expand=False,
)
depends_on("java@8", type="run")
depends_on("java@11", when="@60:", type="run")
depends_on("java@8", when="@:59", type="run")
def install(self, spec, prefix):
mkdirp(prefix.bin)