-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathPRRTE-3.0.11-GCCcore-14.3.0.eb
More file actions
41 lines (29 loc) · 1.06 KB
/
PRRTE-3.0.11-GCCcore-14.3.0.eb
File metadata and controls
41 lines (29 loc) · 1.06 KB
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
easyblock = 'ConfigureMake'
name = 'PRRTE'
version = '3.0.11'
homepage = 'https://docs.prrte.org/'
description = """PRRTE is the PMIx Reference RunTime Environment"""
toolchain = {'name': 'GCCcore', 'version': '14.3.0'}
toolchainopts = {'pic': True}
source_urls = ['https://github.com/openpmix/prrte/releases/download/v%(version)s']
sources = ['%(namelower)s-%(version)s.tar.bz2']
checksums = ['37af5a82d333a54c0bac358f06c194427b7dbfa7b8b85f2ddd1145acf71cfdd4']
builddependencies = [
('binutils', '2.44'),
('pkgconf', '2.4.3'),
]
dependencies = [
('libevent', '2.1.12'),
('hwloc', '2.12.1'),
('PMIx', '5.0.8'),
]
configopts = ' --with-libevent=$EBROOTLIBEVENT'
configopts += ' --with-hwloc=$EBROOTHWLOC --with-pmix=$EBROOTPMIX'
buildopts = 'V=1'
local_binaries = ['prte', 'prte_info', 'prterun', 'prun', 'pterm']
sanity_check_paths = {
'files': ['bin/%s' % x for x in local_binaries] + ['lib/libprrte.%s' % SHLIB_EXT],
'dirs': ['etc', 'include', 'share']
}
sanity_check_commands = ['%s --version' % x for x in local_binaries]
moduleclass = 'lib'