Added cnmem package`

This commit is contained in:
David Poliakoff 2016-05-02 15:49:37 -07:00
parent 179d308fe0
commit afef04bb54

View File

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