spack/var/spack/repos/builtin/packages/ncbi-vdb/package.py
snehring 261a34a7a4
Adding ncbi-vdb 3.0.2 (#37435)
* ncbi-vdb: adding version 3.0.2
* sra-tools: adding version restriction for newer versions
2023-05-05 11:06:07 -07:00

23 lines
698 B
Python

# 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.2", tag="3.0.2")
version("3.0.0", tag="3.0.0")
depends_on("openjdk")
depends_on("flex@2.6:")
depends_on("libxml2")