summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/caliper/package.py
blob: d51b4a4dd57ab291734efbdd30b58b4233a67f8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from spack import *

class Caliper(Package):
    """
    Caliper is a generic context annotation system. It gives programmers the
    ability to provide arbitrary program context information to (performance)
    tools at runtime.
    """

    homepage = "https://github.com/LLNL/Caliper"
    url      = ""

    version('master', git='ssh://git@github.com:LLNL/Caliper.git')

    variant('mpi', default=False, description='Enable MPI function wrappers.')

    depends_on('libunwind')
    depends_on('papi')
    depends_on('mpi', when='+mpi')

    def install(self, spec, prefix):
      with working_dir('build', create=True):
        cmake('..', *std_cmake_args)
        make()
        make("install")