summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cnmem/package.py
blob: f65838d195d7078c17328cb99498cfd31f6107f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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')