Initial build of MemAxes GUI.
This commit is contained in:
parent
b7dacb427d
commit
d08c0703a0
1 changed files with 20 additions and 0 deletions
20
var/spack/packages/memaxes/package.py
Normal file
20
var/spack/packages/memaxes/package.py
Normal file
|
@ -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")
|
||||
|
Loading…
Reference in a new issue