summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2014-09-27 00:04:50 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2014-10-03 16:57:32 -0700
commit0fa1c5b0a54c2b64dfc431449b1ba4491b9981c0 (patch)
treedfb37aab3aeca8bc838258ad5bf90fee910a62e8 /var
parent727d313c3052d117ec3268ccc8d3f34f1c443b1c (diff)
downloadspack-0fa1c5b0a54c2b64dfc431449b1ba4491b9981c0.tar.gz
spack-0fa1c5b0a54c2b64dfc431449b1ba4491b9981c0.tar.bz2
spack-0fa1c5b0a54c2b64dfc431449b1ba4491b9981c0.tar.xz
spack-0fa1c5b0a54c2b64dfc431449b1ba4491b9981c0.zip
Add Mercurial fetch strategy and lwm2.
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/lwm2/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/packages/lwm2/package.py b/var/spack/packages/lwm2/package.py
new file mode 100644
index 0000000000..bf95c3fe12
--- /dev/null
+++ b/var/spack/packages/lwm2/package.py
@@ -0,0 +1,18 @@
+from spack import *
+
+class Lwm2(Package):
+ """LWM2: Light Weight Measurement Module. This is a PMPI module
+ that can collect a number of time-sliced MPI and POSIX I/O
+ measurements from a program.
+ """
+ homepage = "https://jay.grs.rwth-aachen.de/redmine/projects/lwm2"
+
+ version('torus', hg='https://jay.grs.rwth-aachen.de/hg/lwm2', branch='torus')
+
+ depends_on("papi")
+ depends_on("mpi")
+
+ def install(self, spec, prefix):
+ configure("--prefix=%s" % prefix)
+ make()
+ make("install")