diff options
author | alalazo <massimiliano.culpo@googlemail.com> | 2016-02-11 13:03:47 +0100 |
---|---|---|
committer | alalazo <massimiliano.culpo@googlemail.com> | 2016-02-11 13:03:47 +0100 |
commit | e7454132a2d5c8f05f8c4197b4c26e54bf6ebd0b (patch) | |
tree | 8a2e60cec83cb803c7cef8ec237ea93fe6c5f909 /var/spack/repos/builtin/packages/Mitos/package.py | |
parent | 7fc308ed26d7abfcb71af8165523b421a1f315c0 (diff) | |
parent | bcf705b85e82509a5045a52a3420893c5546ee7f (diff) | |
download | spack-e7454132a2d5c8f05f8c4197b4c26e54bf6ebd0b.tar.gz spack-e7454132a2d5c8f05f8c4197b4c26e54bf6ebd0b.tar.bz2 spack-e7454132a2d5c8f05f8c4197b4c26e54bf6ebd0b.tar.xz spack-e7454132a2d5c8f05f8c4197b4c26e54bf6ebd0b.zip |
Merge branch 'develop' of https://github.com/LLNL/spack into packages/espresso
Diffstat (limited to 'var/spack/repos/builtin/packages/Mitos/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/Mitos/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/Mitos/package.py b/var/spack/repos/builtin/packages/Mitos/package.py new file mode 100644 index 0000000000..ea131872dd --- /dev/null +++ b/var/spack/repos/builtin/packages/Mitos/package.py @@ -0,0 +1,26 @@ +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") |