ninja-phylogeny: adding new package ninja-phylogeny (#38182)

This commit is contained in:
snehring 2023-06-05 15:44:51 -05:00 committed by GitHub
parent 053550e28a
commit 7c11faceb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,28 @@
# 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 NinjaPhylogeny(MakefilePackage):
"""NINJA is software for inferring large-scale neighbor-joining phylogenies."""
homepage = "https://wheelerlab.org/software/ninja/"
url = "https://github.com/TravisWheelerLab/NINJA/archive/refs/tags/0.98-cluster_only.tar.gz"
maintainers("snehring")
version("0.98", sha256="55675e1a9d51eddb3decc9a7570b6bcddb12e8a922cf1ca0a1ea43995793c9db")
build_directory = "NINJA"
def edit(self, spec, prefix):
with working_dir("NINJA"):
filter_file(r"^CXX = g\+\+.*$", "", "Makefile")
def install(self, spec, prefix):
mkdirp(prefix.bin)
with working_dir("NINJA"):
install("Ninja", prefix.bin)