summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ncbi-vdb/package.py
blob: 93c5542c278d1f16929474ac1f9c0d2667163660 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 NcbiVdb(CMakePackage):
    """The SRA Toolkit and SDK from NCBI is a collection of tools and
    libraries for using data in the INSDC Sequence Read Archives.
    This package contains the interface to the VDB."""

    homepage = "https://github.com/ncbi/ncbi-vdb"
    git = "https://github.com/ncbi/ncbi-vdb.git"

    version("3.0.0", tags="3.0.0")

    depends_on("openjdk")
    depends_on("flex@2.6:")
    depends_on("libxml2")