summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gatb-core/package.py
blob: 24b7e14a14c6f53b8156337a8445877b709567d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2023 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 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"