beast-tracer: new package at 1.7.1 (#10652)
This commit is contained in:
parent
0e7b19adf4
commit
68af6148d1
28
var/spack/repos/builtin/packages/beast-tracer/package.py
Normal file
28
var/spack/repos/builtin/packages/beast-tracer/package.py
Normal file
@ -0,0 +1,28 @@
|
||||
# Copyright 2013-2019 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 import *
|
||||
from os import path
|
||||
|
||||
|
||||
class BeastTracer(Package):
|
||||
"""Tracer is a graphical tool for visualization and diagnostics of MCMC
|
||||
output."""
|
||||
|
||||
homepage = "http://beast.community/tracer"
|
||||
url = "https://github.com/beast-dev/tracer/archive/v1.7.1.tar.gz"
|
||||
|
||||
version('1.7.1', sha256='947d51c5afa52354099b9b182ba6036e352356bd62df94031f33cdcb7e8effd3')
|
||||
|
||||
depends_on('ant', type='build')
|
||||
depends_on('java', type=('build', 'run'))
|
||||
|
||||
def install(self, spec, prefix):
|
||||
ant = which('ant')
|
||||
ant('dist')
|
||||
|
||||
mkdirp(prefix.bin)
|
||||
install(join_path(path.dirname(__file__), 'tracer'), prefix.bin)
|
||||
install('build/dist/tracer.jar', prefix.bin)
|
4
var/spack/repos/builtin/packages/beast-tracer/tracer
Executable file
4
var/spack/repos/builtin/packages/beast-tracer/tracer
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/env sh
|
||||
# tracer launch script
|
||||
|
||||
java -Xms64m -Xmx10000m -jar $(dirname $0)/tracer.jar $*
|
Loading…
Reference in New Issue
Block a user