12345678910111213141516171819202122232425262728293031 |
- easyblock = 'ConfigureMake'
- name = 'CMake'
- version = '3.5.2'
- 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': 'intel', 'version': '2016.02-GCC-4.9'}
- source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
- sources = [SOURCELOWER_TAR_GZ]
- configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
- dependencies = [
- ('ncurses', '6.0'),
- # 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.0.1s'),
- ]
- osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
- sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
- }
- moduleclass = 'devel'
|