Add cram package.
This commit is contained in:
parent
0394adcf8d
commit
fbebb94cd6
1 changed files with 15 additions and 0 deletions
15
var/spack/packages/cram/package.py
Normal file
15
var/spack/packages/cram/package.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from spack import *
|
||||
|
||||
class Cram(Package):
|
||||
"""Cram runs many small MPI jobs inside one large MPI job."""
|
||||
homepage = "https://github.com/scalability-llnl/cram"
|
||||
url = "http://github.com/scalability-llnl/cram/archive/v1.0.1.tar.gz"
|
||||
|
||||
version('1.0.1', 'c73711e945cf5dc603e44395f6647f5e')
|
||||
|
||||
depends_on("mpi")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
cmake(".", *std_cmake_args)
|
||||
make()
|
||||
make("install")
|
Loading…
Reference in a new issue