summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mct/package.py
blob: 1f6852c55138e94f83c137d8f22967b02022754f (plain) (blame)
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
# Copyright 2013-2024 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 Mct(AutotoolsPackage):
    """Model Coupling Toolkit (MCT): toolkit to support the construction
    of highly portable and extensible high-performance couplers for
    distributed memory parallel coupled models."""

    homepage = "https://github.com/MCSclimate/MCT"
    url = "https://github.com/MCSclimate/MCT/archive/refs/tags/MCT_2.11.0.tar.gz"

    maintainers("climbfuji")

    # TODO: MCT uses a custom license not representable by an SPDX identifier.
    # Once there is a consensus and documentation on how to represent custom
    # licenses, add a license annotation here.

    version("2.11.0", sha256="1b2a30bcba0081226ff1f1f5152e82afa3a2bb911215883965e669f776dcb365")
    version("2.10.0", sha256="42f32e3ab8bba31d16a1c6c9533f717a9d950e42c9b03b864b3436335d4e1b71")

    depends_on("mpi")