summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/Mitos/package.py
blob: ec1d56a5c7b94a52c982e5c540963189ca283817 (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 Mitos(Package):
    """Mitos is a library and a tool for collecting sampled memory
    performance data to view with MemAxes"""

    homepage = "https://github.com/llnl/Mitos"
    url = "https://github.com/llnl/Mitos"

    version('0.9.2',
            git='https://github.com/llnl/Mitos.git',
            commit='8cb143a2e8c00353ff531a781a9ca0992b0aaa3d')

    version('0.9.1', git='https://github.com/llnl/Mitos.git', tag='v0.9.1')

    depends_on('dyninst@8.2.1:')
    depends_on('hwloc')
    depends_on('mpi')

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