-
Notifications
You must be signed in to change notification settings - Fork 705
/
CubeWriter-4.8.2-GCCcore-13.3.0.eb
52 lines (41 loc) · 1.7 KB
/
CubeWriter-4.8.2-GCCcore-13.3.0.eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright:: Copyright 2019-2024 Juelich Supercomputing Centre, Germany
# Copyright 2023-2024 TU Dresden, Germany
# Authors:: Markus Geimer <m.geimer@fz-juelich.de>
# Alexander Grund <alexander.grund@tu-dresden.de>
# Jan André Reuter <j.reuter@fz-juelich.de>
# License:: 3-clause BSD
#
# This work is based on experiences from the UNITE project
# http://apps.fz-juelich.de/unite/
easyblock = 'EB_Score_minus_P'
name = 'CubeWriter'
version = '4.8.2'
homepage = 'https://www.scalasca.org/software/cube-4.x/download.html'
description = """
Cube, which is used as performance report explorer for Scalasca and Score-P,
is a generic tool for displaying a multi-dimensional performance space
consisting of the dimensions (i) performance metric, (ii) call path, and
(iii) system resource. Each dimension can be represented as a tree, where
non-leaf nodes of the tree can be collapsed or expanded to achieve the
desired level of granularity.
This module provides the Cube high-performance C writer library component.
"""
toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
source_urls = ['https://apps.fz-juelich.de/scalasca/releases/cube/%(version_major_minor)s/dist']
sources = ['cubew-%(version)s.tar.gz']
checksums = ['4f3bcf0622c2429b8972b5eb3f14d79ec89b8161e3c1cc5862ceda417d7975d2']
builddependencies = [
# use same binutils version that was used when building GCCcore
('binutils', '2.42'),
('pkgconf', '2.2.0'),
]
dependencies = [
('zlib', '1.3.1'),
]
configopts = '--enable-shared'
sanity_check_paths = {
'files': ['bin/cubew-config',
'lib/libcube4w.a', 'lib/libcube4w.%s' % SHLIB_EXT],
'dirs': ['include/cubew'],
}
moduleclass = 'perf'