blob: d3559fe6a0d81dcb4ec047b7204631866e37b7af (
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-2018 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 Rempi(AutotoolsPackage):
"""ReMPI is a record-and-replay tool for MPI applications."""
homepage = "https://github.com/PRUNERS/ReMPI"
url = "https://github.com/PRUNERS/ReMPI/releases/download/v1.0.0/ReMPI-1.0.0.tar.gz"
version("1.1.0", "05b872a6f3e2f49a2fc6112a844c7f43")
version("1.0.0", "32c780a6a74627b5796bea161d4c4733")
depends_on("mpi")
depends_on("zlib")
depends_on("autoconf", type='build')
depends_on("automake", type='build')
depends_on("libtool", type='build')
|