spack/var/spack/repos/builtin/packages/psmc/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

30 lines
849 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 Psmc(MakefilePackage):
"""mplementation of the Pairwise Sequentially Markovian Coalescent
(PSMC) model"""
homepage = "https://github.com/lh3/psmc"
git = "https://github.com/lh3/psmc.git"
version("2016-1-21", commit="e5f7df5d00bb75ec603ae0beff62c0d7e37640b9")
depends_on("zlib", type="link")
def setup_run_environment(self, env):
env.prepend_path("PATH", self.prefix.bin.utils)
def build(self, spec, prefix):
make()
with working_dir("utils"):
make()
def install(self, spec, prefix):
install_tree(self.build_directory, prefix.bin)