diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-02-11 14:00:22 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-03-12 06:54:14 -0700 |
commit | 14a79a2ddf022a09d65ba92d5450292ca6f79549 (patch) | |
tree | 815b4455ff53b6b368b0c69fbf12f2d909a0dea9 | |
parent | d6c14f40b2c698a3bbf41fb34e3af6ae2fdbba3c (diff) | |
download | spack-14a79a2ddf022a09d65ba92d5450292ca6f79549.tar.gz spack-14a79a2ddf022a09d65ba92d5450292ca6f79549.tar.bz2 spack-14a79a2ddf022a09d65ba92d5450292ca6f79549.tar.xz spack-14a79a2ddf022a09d65ba92d5450292ca6f79549.zip |
Add OTF package.
-rw-r--r-- | var/spack/packages/otf/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/packages/otf/package.py b/var/spack/packages/otf/package.py new file mode 100644 index 0000000000..52893dd265 --- /dev/null +++ b/var/spack/packages/otf/package.py @@ -0,0 +1,21 @@ +from spack import * + +class Otf(Package): + """To improve scalability for very large and massively parallel + traces the Open Trace Format (OTF) is developed at ZIH as a + successor format to the Vampir Trace Format (VTF3).""" + + homepage = "http://tu-dresden.de/die_tu_dresden/zentrale_einrichtungen/zih/forschung/projekte/otf/index_html/document_view?set_language=en" + url = "http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz" + + version('1.12.5salmon', 'bf260198633277031330e3356dcb4eec') + + depends_on('zlib') + + def install(self, spec, prefix): + configure('--prefix=%s' % prefix, + '--without-vtf3', + '--with-zlib', + '--with-zlibsymbols') + make() + make("install") |