ninja-phylogeny: adding new package ninja-phylogeny (#38182)
This commit is contained in:
parent
053550e28a
commit
7c11faceb0
28
var/spack/repos/builtin/packages/ninja-phylogeny/package.py
Normal file
28
var/spack/repos/builtin/packages/ninja-phylogeny/package.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user