23 lines
601 B
Python
23 lines
601 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class BppPopgen(CMakePackage):
|
|
"""The Bio++ Population Genetics Library"""
|
|
|
|
homepage = "https://https://github.com/BioPP/bpp-popgen"
|
|
url = "https://github.com/BioPP/bpp-popgen/archive/refs/tags/v2.4.1.tar.gz"
|
|
|
|
maintainers("snehring")
|
|
|
|
license("CECILL-2.0")
|
|
|
|
version("2.4.1", sha256="03b57d71a63c8fa7f11c085e531d0d691fc1d40d4ea541070dabde0ab3baf413")
|
|
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
depends_on("bpp-seq")
|