mirror of
https://github.com/triqs/dft_tools
synced 2024-12-22 20:34:38 +01:00
79789512bf
Co-authored-by: Dylan Simon <dylan@dylex.net> Co-authored-by: Alexander Hampel <ahampel@flatironinstitute.org>
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
easyblock = 'CMakeMake'
|
|
|
|
name = 'TRIQS-app4triqs'
|
|
version = '@PROJECT_VERSION@'
|
|
|
|
homepage = 'https://triqs.github.io/app4triqs/'
|
|
description = """
|
|
PROVIDE HERE A DESCRIPTION OF YOUR APPLICATION
|
|
"""
|
|
|
|
docurls = ['https://triqs.github.io/app4triqs/%(version_major_minor)s.x/']
|
|
software_license = 'LicenseGPLv3'
|
|
|
|
toolchain = {'name': 'foss', 'version': '2021b'}
|
|
toolchainopts = {'pic': True, 'usempi': True}
|
|
|
|
source_urls = ['https://github.com/TRIQS/app4triqs/releases/download/%(version)s/']
|
|
sources = ['app4triqs-%(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'),
|
|
('Clang-Python-bindings', '13.0.1'),
|
|
('GMP', '6.2.1'),
|
|
('HDF5', '1.10.7'),
|
|
('Mako', '1.1.4'),
|
|
('TRIQS', '3.3.0'),
|
|
('NFFT', '3.5.2')
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.22.1')
|
|
]
|
|
|
|
separate_build_dir = True
|
|
|
|
runtest = 'test'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib/libapp4triqs_c.a'],
|
|
'dirs': ['include/app4triqs', 'lib', 'share',
|
|
'lib/python%(pyshortver)s/site-packages/app4triqs'],
|
|
}
|
|
|
|
sanity_check_commands = ["python -c 'import app4triqs'"]
|
|
|
|
modextrapaths = {
|
|
'CPLUS_INCLUDE_PATH': 'include',
|
|
'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
|
|
'CMAKE_PREFIX_PATH': 'lib/cmake/app4triqs',
|
|
}
|
|
modextravars = {
|
|
'APP4TRIQS_ROOT': '%(installdir)s',
|
|
'APP4TRIQS_VERSION': '%(version)s',
|
|
}
|
|
|
|
moduleclass = 'phys'
|