diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-01-19 14:07:41 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-01-19 14:07:41 -0800 |
commit | d08c0703a06825311a4fabf2c49f7f04cceadbf9 (patch) | |
tree | f2cda529f98df1f5244f8e0b59405e611a0e603d /var | |
parent | b7dacb427d2d9e80778b6c0eec05e0cc64d60859 (diff) | |
download | spack-d08c0703a06825311a4fabf2c49f7f04cceadbf9.tar.gz spack-d08c0703a06825311a4fabf2c49f7f04cceadbf9.tar.bz2 spack-d08c0703a06825311a4fabf2c49f7f04cceadbf9.tar.xz spack-d08c0703a06825311a4fabf2c49f7f04cceadbf9.zip |
Initial build of MemAxes GUI.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/memaxes/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/packages/memaxes/package.py b/var/spack/packages/memaxes/package.py new file mode 100644 index 0000000000..afa62009a6 --- /dev/null +++ b/var/spack/packages/memaxes/package.py @@ -0,0 +1,20 @@ +from spack import * + +class Memaxes(Package): + """MemAxes is a visualizer for sampled memory trace data.""" + + homepage = "https://github.com/scalability-llnl/MemAxes" + + version('0.5', 'b0f561d48aa7301e028d074bc4b5751b', + url='https://github.com/scalability-llnl/MemAxes/archive/v0.5.tar.gz') + + depends_on("cmake@2.8.9:") + depends_on("qt@5:") + depends_on("vtk") + + def install(self, spec, prefix): + with working_dir('spack-build', create=True): + cmake('..', *std_cmake_args) + make() + make("install") + |