Skip to content

Commit

Permalink
mpigraph: new package (LLNL mpigraph) (spack#45121)
Browse files Browse the repository at this point in the history
Signed-off-by: Ron Minnich <[email protected]>
  • Loading branch information
rminnich committed Jul 31, 2024
1 parent c30c5df commit 12abc23
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions var/spack/repos/builtin/packages/mpigraph/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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)

import os

from spack.package import *


class Mpigraph(Package):
"""LLNL mpigraph"""

homepage = "https://github.com/LLNL/mpiGraph"
git = "https://github.com/LLNL/mpiGraph.git"

version("main", branch="main")

depends_on("mpi")
maintainers("adammoody", "onewayforever", "rminnich")
license("BSD-3-Clause", checked_by="rminnich")

version("0.0.1")

depends_on("mpi")

def install(self, spec, prefix):
mkdirp(prefix.bin)
make()
install("mpiGraph", os.path.join(prefix.bin, "mpiGraph"))

0 comments on commit 12abc23

Please sign in to comment.