diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2023-12-11 18:25:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 11:25:20 -0700 |
commit | af378c7f3107531762473acfbf5c6974ea25509e (patch) | |
tree | ea937bbe46bdef284fb0956407400f902f5b9839 /var | |
parent | cf50bfb7c21ee2e431a07346da178f8be55c01bf (diff) | |
download | spack-af378c7f3107531762473acfbf5c6974ea25509e.tar.gz spack-af378c7f3107531762473acfbf5c6974ea25509e.tar.bz2 spack-af378c7f3107531762473acfbf5c6974ea25509e.tar.xz spack-af378c7f3107531762473acfbf5c6974ea25509e.zip |
perl-bio-db-hts: add new package with version 3.01 (#41554)
* perl-bio-db-hts: add new package with version 3.01
* fix styling
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-bio-db-hts/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-bio-db-hts/package.py b/var/spack/repos/builtin/packages/perl-bio-db-hts/package.py new file mode 100644 index 0000000000..704defc835 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-bio-db-hts/package.py @@ -0,0 +1,19 @@ +# 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 PerlBioDbHts(PerlPackage): + """Bio::DB::HTS - This is a Perl interface to the HTS Library.""" + + homepage = "https://metacpan.org/dist/Bio-DB-HTS" + url = "https://cpan.metacpan.org/authors/id/A/AV/AVULLO/Bio-DB-HTS-3.01.tar.gz" + + version("3.01", sha256="12a6bc1f579513cac8b9167cce4e363655cc8eba26b7d9fe1170dfe95e044f42") + + depends_on("perl-module-build", type="build") + depends_on("perl-bioperl") + depends_on("htslib") |