Skip to content

Commit 14a79a2

Browse files
committed
Add OTF package.
1 parent d6c14f4 commit 14a79a2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

var/spack/packages/otf/package.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from spack import *
2+
3+
class Otf(Package):
4+
"""To improve scalability for very large and massively parallel
5+
traces the Open Trace Format (OTF) is developed at ZIH as a
6+
successor format to the Vampir Trace Format (VTF3)."""
7+
8+
homepage = "http://tu-dresden.de/die_tu_dresden/zentrale_einrichtungen/zih/forschung/projekte/otf/index_html/document_view?set_language=en"
9+
url = "http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=otf&get=OTF-1.12.5salmon.tar.gz"
10+
11+
version('1.12.5salmon', 'bf260198633277031330e3356dcb4eec')
12+
13+
depends_on('zlib')
14+
15+
def install(self, spec, prefix):
16+
configure('--prefix=%s' % prefix,
17+
'--without-vtf3',
18+
'--with-zlib',
19+
'--with-zlibsymbols')
20+
make()
21+
make("install")

0 commit comments

Comments
 (0)