modified: c/CASMcode/CASMcode-0.2.1-intel-2017a-Python-2.7.13.eb

new file:   s/SCons/SCons-2.5.1-intel-2017a-Python-2.7.13.eb
This commit is contained in:
Lukáš Krupčík 2017-10-31 14:00:00 +01:00
parent e2a5ba0f57
commit b92d18d822
2 changed files with 28 additions and 1 deletions

View File

@ -25,7 +25,8 @@ patches = ['CASMcode.patch']
dependencies = [
('Boost', '1.63.0', '-Python-2.7.13'),
('Python', '2.7.13', '', True),
('SCons','3.0.0', '-Python-2.7.13'),
# ('SCons','3.0.0', '-Python-2.7.13'), # BUG
('SCons','2.5.1', '-Python-2.7.13')
]
configopts = '--with-boost=$EBROOTBOOST'

View File

@ -0,0 +1,26 @@
easyblock = 'PythonPackage'
name = 'SCons'
version = '2.5.1'
homepage = 'http://www.scons.org/'
description = "SCons is a software construction tool."
toolchain = {'name': 'intel', 'version': '2017a'}
sources = [SOURCELOWER_TAR_GZ]
source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
python = 'Python'
pyver = '2.7.13'
versionsuffix = '-%s-%s' % (python, pyver)
dependencies = [(python, pyver, '', True)]
sanity_check_paths = {
'files': ['bin/scons', 'bin/scons-time', 'bin/sconsign'],
'dirs': ['lib/%(namelower)s-%(version)s/%(name)s'],
}
options = {'modulename': False}
moduleclass = 'devel'