summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-11-23 10:10:12 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-11-23 10:10:12 -0800
commit7392e1af598cc9cfadd7a3b6acfe0c1b70a84d3e (patch)
treefdf92d8d36dd27e3968332991c45033d13d94f58 /var
parent34e445a480a08f74bb0fce0906276ff0724703ef (diff)
parent4edcc59c3dc6f5c5121e0b453f39ab90ec5af3ca (diff)
downloadspack-7392e1af598cc9cfadd7a3b6acfe0c1b70a84d3e.tar.gz
spack-7392e1af598cc9cfadd7a3b6acfe0c1b70a84d3e.tar.bz2
spack-7392e1af598cc9cfadd7a3b6acfe0c1b70a84d3e.tar.xz
spack-7392e1af598cc9cfadd7a3b6acfe0c1b70a84d3e.zip
Merge pull request #190 from bhatele/feature/networktools
Add damselfly package
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/damselfly/package.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/var/spack/packages/damselfly/package.py b/var/spack/packages/damselfly/package.py
new file mode 100644
index 0000000000..54df528c4a
--- /dev/null
+++ b/var/spack/packages/damselfly/package.py
@@ -0,0 +1,14 @@
+from spack import *
+
+class Damselfly(Package):
+ """Damselfly is a model-based parallel network simulator."""
+ homepage = "https://github.com/scalability-llnl/damselfly"
+ url = "https://github.com/scalability-llnl/damselfly"
+
+ version('1.0', '05cf7e2d8ece4408c0f2abb7ab63fd74c0d62895', git='https://github.com/scalability-llnl/damselfly.git', tag='v1.0')
+
+ def install(self, spec, prefix):
+ with working_dir('spack-build', create=True):
+ cmake('-DCMAKE_BUILD_TYPE=release', '..', *std_cmake_args)
+ make()
+ make('install')