PSAPI v0.6 -> Mitos v0.7

This commit is contained in:
Alfredo Gimenez 2015-01-23 16:58:15 -08:00
parent e97db785d6
commit 6a496ef620
2 changed files with 18 additions and 18 deletions

View File

@ -0,0 +1,18 @@
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"
version('0.7', git='https://github.com/scalability-llnl/Mitos.git', tag='v0.7')
depends_on('dyninst')
def install(self, spec, prefix):
with working_dir('spack-build', create=True):
cmake('..', *std_cmake_args)
make()
make("install")

View File

@ -1,18 +0,0 @@
from spack import *
class Psapi(Package):
"""PSAPI is a library and a tool for collecting sampled memory
performance data to view with MemAxes"""
homepage = "https://github.com/scalability-llnl/PSAPI"
url = "http://www.example.com/memaxes-psapi-1.0.tar.gz"
version('0.6', git='https://github.com/scalability-llnl/PSAPI.git', tag='v0.6')
depends_on('dyninst')
def install(self, spec, prefix):
with working_dir('spack-build', create=True):
cmake('..', *std_cmake_args)
make()
make("install")