Added a package for the RAJA system

This commit is contained in:
David Poliakoff 2016-05-02 14:32:57 -07:00
parent 372a455bea
commit 179d308fe0

View File

@ -0,0 +1,12 @@
from spack import *
class Raja(Package):
"""RAJA Parallel Framework."""
homepage = "http://software.llnl.gov/RAJA/"
version('git', git='https://github.com/LLNL/RAJA.git', branch="master")
def install(self, spec, prefix):
cmake('.',*std_cmake_args)
make()
make('install')