mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-11 01:12:11 +01:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'CMake'
|
|
version = '3.11.1'
|
|
|
|
homepage = 'http://www.cmake.org'
|
|
|
|
description = """
|
|
CMake, the cross-platform, open-source build system. CMake is a family of
|
|
tools designed to build, test and package software.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '6.4.0'}
|
|
|
|
source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
checksums = ['57bebc6ca4d1d42c6385249d148d9216087e0fda57a47dc5c858790a70217d0c']
|
|
|
|
builddependencies = [
|
|
('local_binutils', '2.28'),
|
|
]
|
|
|
|
dependencies = [
|
|
('ncurses', '6.1', '', True),
|
|
# OS dependency should be preferred if the os version is more recent then this version,
|
|
# it's nice to have an up to date openssl for security reasons
|
|
# ('OpenSSL', '1.1.0g'),
|
|
]
|
|
|
|
osdependencies = [
|
|
('openssl-devel', 'libssl-dev', 'libopenssl-devel'),
|
|
]
|
|
|
|
configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
|
|
|
|
sanity_check_paths = {
|
|
'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'devel'
|