memaxes: cmakepackage (#44869)

This commit is contained in:
Harmen Stoppels 2024-06-25 21:55:54 +02:00 committed by GitHub
parent b894acf1fc
commit 824f2a5652
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@
from spack.package import *
class Memaxes(Package):
class Memaxes(CMakePackage):
"""MemAxes is a visualizer for sampled memory trace data."""
homepage = "https://github.com/llnl/MemAxes"
@ -21,9 +21,3 @@ class Memaxes(Package):
depends_on("cmake@2.8.9:", type="build")
depends_on("qt@5:")
def install(self, spec, prefix):
with working_dir("spack-build", create=True):
cmake("..", *std_cmake_args)
make()
make("install")