added mrnet-4.1.0 and stat-2.1.0

This commit is contained in:
Gregory L. Lee 2014-05-07 08:41:03 -07:00
parent 3607c26439
commit e6e1b332be
2 changed files with 2 additions and 7 deletions

View file

@ -6,6 +6,7 @@ class Mrnet(Package):
url = "ftp://ftp.cs.wisc.edu/paradyn/mrnet/mrnet_4.0.0.tar.gz"
versions = { '4.0.0' : 'd00301c078cba57ef68613be32ceea2f', }
versions = { '4.1.0' : '5a248298b395b329e2371bf25366115c', }
parallel = False
depends_on("boost")
@ -16,10 +17,3 @@ def install(self, spec, prefix):
make()
make("install")
# TODO: copy configuration header files to include directory
# this can be removed once we have STAT-2.1.0
import shutil
shutil.copy2('%s/lib/mrnet-%s/include/mrnet_config.h' % (prefix, self.version),
'%s/include/mrnet_config.h' % prefix)
shutil.copy2('%s/lib/xplat-%s/include/xplat_config.h' % (prefix, self.version),
'%s/include/xplat_config.h' % prefix)

View file

@ -6,6 +6,7 @@ class Stat(Package):
url = "https://github.com/lee218llnl/stat/archive/v2.0.0.tar.gz"
versions = { '2.0.0' : 'c7494210b0ba26b577171b92838e1a9b', }
versions = { '2.1.0' : 'ece26beaf057aa9134d62adcdda1ba91', }
depends_on('libdwarf')
depends_on('dyninst')