spack/var/spack/packages/Mitos/package.py

20 lines
637 B
Python
Raw Normal View History

2015-01-24 08:58:15 +08:00
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/scalability-llnl/Mitos"
url = "https://github.com/scalability-llnl/Mitos"
2015-06-12 02:02:51 +08:00
version('0.9.1', 'c6cb57f3cae54f5157affd97ef7ef79e', git='https://github.com/scalability-llnl/Mitos.git', tag='v0.9.1')
2015-01-24 08:58:15 +08:00
2015-06-04 13:02:47 +08:00
depends_on('dyninst@8.2.1:')
2015-06-04 12:58:44 +08:00
depends_on('hwloc')
2015-01-24 08:58:15 +08:00
def install(self, spec, prefix):
with working_dir('spack-build', create=True):
cmake('..', *std_cmake_args)
make()
make("install")