summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/exchanger/package.py
blob: 018459d8c3264132d365dabac74f61aa4ba8c328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2020 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 Exchanger(AutotoolsPackage):
    """Exchanger is a package containing several C++ base classes. These
    classes, when customized for a solver, can provide communication channels
    between solvers. This packaged is used by CitcomS for solver coupling."""

    homepage = "https://geodynamics.org/cig/software/exchanger/"
    url      = "https://geodynamics.org/cig/software/exchanger/Exchanger-1.0.1.tar.gz"

    version('1.0.1', sha256='1e6c8311db96582bcf2c9aee16a863a5730c1aa54cb3aa7d0249239c6e0b68ee')

    depends_on('python', type=('build', 'run'))
    depends_on('py-merlin', type='build')
    depends_on('py-pythia@0.8.1.0:0.8.1.999', type=('build', 'run'))