spack/var/spack/repos/builtin/packages/raja/package.py
2016-05-02 14:32:57 -07:00

13 lines
326 B
Python

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')