mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-11 01:12:11 +01:00
29 lines
684 B
Plaintext
29 lines
684 B
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'CMake'
|
|
version = '3.4.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': 'foss', 'version': '2015a'}
|
|
|
|
source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
configopts = '-- -DCMAKE_USE_OPENSSL=1'
|
|
|
|
dependencies = [
|
|
('ncurses', '5.9'),
|
|
]
|
|
|
|
osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
|
|
|
|
sanity_check_paths = {
|
|
'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'devel'
|