summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gatb-core
diff options
context:
space:
mode:
authorsnehring <snehring@users.noreply.github.com>2021-12-24 06:42:30 -0600
committerGitHub <noreply@github.com>2021-12-24 13:42:30 +0100
commita3048438c33c16591d94bdc668a2bb1721c15937 (patch)
tree39227dce52b8d93428fbf039b228ce22916109fd /var/spack/repos/builtin/packages/gatb-core
parent63317785522b067882428e3b6ae639660fcd188b (diff)
downloadspack-a3048438c33c16591d94bdc668a2bb1721c15937.tar.gz
spack-a3048438c33c16591d94bdc668a2bb1721c15937.tar.bz2
spack-a3048438c33c16591d94bdc668a2bb1721c15937.tar.xz
spack-a3048438c33c16591d94bdc668a2bb1721c15937.zip
lordec update and gatb-core (#28119)
* lordec: version update to 0.9 adding gatb-core as dep * gatb-core: adding new package gatb-core
Diffstat (limited to 'var/spack/repos/builtin/packages/gatb-core')
-rw-r--r--var/spack/repos/builtin/packages/gatb-core/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gatb-core/package.py b/var/spack/repos/builtin/packages/gatb-core/package.py
new file mode 100644
index 0000000000..fb90b24983
--- /dev/null
+++ b/var/spack/repos/builtin/packages/gatb-core/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2021 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 import *
+
+
+class GatbCore(CMakePackage):
+ """GATB - The Genome Analysis Toolbox with de-Bruijn graph"""
+
+ homepage = "https://gatb.inria.fr/software/gatb-core/"
+ git = "https://github.com/GATB/gatb-core.git"
+
+ depends_on('cmake@3.1.0:', type='build')
+
+ version('1.4.2', tag='v1.4.2')
+ version('1.4.1', tag='v1.4.1')
+
+ root_cmakelists_dir = 'gatb-core'