-
Notifications
You must be signed in to change notification settings - Fork 0
/
nda-1.2.0-foss-2021b.eb
53 lines (41 loc) · 1.16 KB
/
nda-1.2.0-foss-2021b.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
53
easyblock = 'CMakeMake'
name = 'nda'
version = '1.2.0'
homepage = 'https://triqs.github.io/nda/'
description = """
PROVIDE HERE A DESCRIPTION OF YOUR APPLICATION
"""
docurls = ['https://triqs.github.io/nda/%(version_major_minor)s.x/']
software_license = 'LicenseGPLv3'
toolchain = {'name': 'foss', 'version': '2021b'}
toolchainopts = {'pic': True, 'usempi': True}
source_urls = ['https://github.com/TRIQS/nda/releases/download/%(version)s/']
sources = ['nda-%(version)s.tar.gz']
checksums = ['PUT HERE THE SHA256 OF THE RELEASE TARBALL']
dependencies = [
('Python', '3.9.6'),
('SciPy-bundle', '2021.10'),
('Boost', '1.77.0'),
('Clang', '13.0.1'),
('GMP', '6.2.1'),
('HDF5', '1.10.7'),
]
builddependencies = [
('CMake', '3.22.1')
]
separate_build_dir = True
runtest = 'test'
sanity_check_paths = {
'files': ['lib/libnda_c.a'],
'dirs': ['include/nda', 'lib', 'share'],
}
modextrapaths = {
'CPLUS_INCLUDE_PATH': 'include',
'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
'CMAKE_PREFIX_PATH': 'lib/cmake/nda',
}
modextravars = {
'NDA_ROOT': '%(installdir)s',
'NDA_VERSION': '%(version)s',
}
moduleclass = 'phys'