summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Young <A-N-Other@users.noreply.github.com>2024-02-01 18:33:28 +0000
committerGitHub <noreply@github.com>2024-02-01 11:33:28 -0700
commit6bd8fda5974804a96531b8b540f6a4698b183c56 (patch)
tree09edacfca4b66ca69d91263271694e2e29c87cc7 /var
parent8b88255b43bb1ae15505d072e86083f3d691b396 (diff)
downloadspack-6bd8fda5974804a96531b8b540f6a4698b183c56.tar.gz
spack-6bd8fda5974804a96531b8b540f6a4698b183c56.tar.bz2
spack-6bd8fda5974804a96531b8b540f6a4698b183c56.tar.xz
spack-6bd8fda5974804a96531b8b540f6a4698b183c56.zip
foldseek: new package @8 (#42422)
Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/foldseek/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/foldseek/package.py b/var/spack/repos/builtin/packages/foldseek/package.py
new file mode 100644
index 0000000000..de5e65211e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/foldseek/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class Foldseek(CMakePackage):
+ """Foldseek enables fast and sensitive comparisons of large protein structure sets"""
+
+ homepage = "https://foldseek.com/"
+ url = "https://github.com/steineggerlab/foldseek/archive/refs/tags/8-ef4e960.tar.gz"
+
+ license("GPL-3.0-only", checked_by="A-N-Other")
+
+ version("8-ef4e960", sha256="c74d02c4924d20275cc567783b56fff10e76ed67f3d642f53c283f67c4180a1e")
+ version("7-04e0ec8", sha256="009d722d600248a680b9e1e9dcb3bf799f8be8de41e80a598b7f39a5ced54191")
+
+ depends_on("zlib-api")
+ depends_on("bzip2")
+ depends_on("openmpi")
+ depends_on("rust", type="build")