summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mpi-bash/package.py
blob: f20c051a072a895b72e612bc7a05727edb0e665a (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
27
28
29
# 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 MpiBash(AutotoolsPackage):
    """Parallel scripting right from the Bourne-Again Shell (Bash)"""

    homepage = "https://github.com/lanl/MPI-Bash"
    url = "https://github.com/lanl/MPI-Bash/releases/download/v1.2/mpibash-1.2.tar.gz"

    version("1.3", sha256="ab39dcc0eadce765abaf685e73d38f4351e3229fdb4302aee4b9e6e70d431d99")
    version("1.2", sha256="5c2faaa74464111205dbae4799bd89c2425810ec3708d004237b42d620c8be57")

    depends_on("bash@4.4:")
    # uses MPI_Exscan which is in MPI-1.2 and later
    depends_on("mpi@1.2:")

    depends_on("libcircle")

    def configure_args(self):
        args = [
            "--with-bashdir={0}".format(self.spec["bash"].prefix.include.bash),
            "CC={0}".format(self.spec["mpi"].mpicc),
        ]
        return args