1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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 *
class Revbayes(CMakePackage):
"""Bayesian phylogenetic inference using probabilistic graphical models
and an interpreted language."""
homepage = "https://revbayes.github.io"
url = "https://github.com/revbayes/revbayes/archive/v1.0.11.tar.gz"
version('1.0.11', sha256='7e81b1952e3a63cb84617fa632f4ccdf246b4d79e7d537a423540de047dadf50')
version('1.0.10', sha256='95e9affe8ca8d62880cf46778b6ec9dd8726e62a185670ebcbadf2eb2bb79f93')
version('1.0.4', '5d6de96bcb3b2686b270856de3555a58',
url='https://github.com/revbayes/revbayes/archive/v1.0.4-release.tar.gz')
variant('mpi', default=True, description='Enable MPI parallel support')
depends_on('boost')
depends_on('mpi', when='+mpi')
conflicts('%gcc@7.1.0:')
root_cmakelists_dir = 'projects/cmake/build'
@run_before('cmake')
def regenerate(self):
with working_dir(join_path('projects', 'cmake')):
mkdirp('build')
edit = FileFilter('regenerate.sh')
edit.filter('boost="true"', 'boost="false"')
if '+mpi' in self.spec:
edit.filter('mpi="false"', 'mpi="true"')
regenerate = Executable('./regenerate.sh')
regenerate()
def install(self, spec, prefix):
mkdirp(prefix.bin)
if '+mpi' in spec:
install_path = join_path(self.build_directory, '..', 'rb-mpi')
install(install_path, prefix.bin)
else:
install_path = join_path(self.build_directory, '..', 'rb')
install(install_path, prefix.bin)
|