summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/memaxes/package.py
blob: 4b1da558a2b5f38d23dcd96d898dc6dae2e9f5cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from spack import *

class Memaxes(Package):
    """MemAxes is a visualizer for sampled memory trace data."""

    homepage = "https://github.com/llnl/MemAxes"

    version('0.5', '5874f3fda9fd2d313c0ff9684f915ab5',
            url='https://github.com/llnl/MemAxes/archive/v0.5.tar.gz')

    depends_on("cmake@2.8.9:")
    depends_on("qt@5:")

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