34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# 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 Mpich2(Package):
|
|
homepage = "http://www.mpich.org"
|
|
url = "http://www.mpich.org/static/downloads/1.5/mpich2-1.5.tar.gz"
|
|
list_url = "http://www.mpich.org/static/downloads/"
|
|
list_depth = 2
|
|
|
|
tags = ["tag1", "tag3"]
|
|
|
|
version("1.5", md5="9c5d5d4fe1e17dd12153f40bc5b6dbc0")
|
|
version("1.4", md5="0123456789abcdef0123456789abcdef")
|
|
version("1.3", md5="0123456789abcdef0123456789abcdef")
|
|
version("1.2", md5="0123456789abcdef0123456789abcdef")
|
|
version("1.1", md5="0123456789abcdef0123456789abcdef")
|
|
version("1.0", md5="0123456789abcdef0123456789abcdef")
|
|
|
|
provides("mpi@:2.0")
|
|
provides("mpi@:2.1", when="@1.1:")
|
|
provides("mpi@:2.2", when="@1.2:")
|
|
|
|
depends_on("c", type="build")
|
|
|
|
def install(self, spec, prefix):
|
|
configure("--prefix=%s" % prefix)
|
|
make()
|
|
make("install")
|