From 616d2322570937dfd9e0a90d7166c1d7489467c6 Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Mon, 6 Oct 2014 10:26:54 -0700 Subject: Add package for Torsten's netgauge tool. --- var/spack/packages/netgauge/package.py | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 var/spack/packages/netgauge/package.py (limited to 'var') diff --git a/var/spack/packages/netgauge/package.py b/var/spack/packages/netgauge/package.py new file mode 100644 index 0000000000..851cd6d135 --- /dev/null +++ b/var/spack/packages/netgauge/package.py @@ -0,0 +1,35 @@ +# FIXME: +# This is a template package file for Spack. We've conveniently +# put "FIXME" labels next to all the things you'll want to change. +# +# Once you've edited all the FIXME's, delete this whole message, +# save this file, and test out your package like this: +# +# spack install netgauge +# +# You can always get back here to change things with: +# +# spack edit netgauge +# +# See the spack documentation for more information on building +# packages. +# +from spack import * + +class Netgauge(Package): + """Netgauge is a high-precision network parameter measurement + tool. It supports benchmarking of many different network protocols + and communication patterns. The main focus lies on accuracy, + statistical analysis and easy extensibility. + """ + homepage = "http://unixer.de/research/netgauge/" + url = "http://unixer.de/research/netgauge/netgauge-2.4.6.tar.gz" + + version('2.4.6', 'e0e040ec6452e93ca21ccc54deac1d7f') + + depends_on("mpi") + + def install(self, spec, prefix): + configure("--prefix=%s" % prefix) + make() + make("install") -- cgit v1.2.3-60-g2f50