easyconfigs-it4i/archive/r/ROOT/ROOT-v5.34.01-intel-2015a.eb
2019-09-23 07:19:27 +02:00

40 lines
1.3 KiB
Plaintext

name = 'ROOT'
version = 'v5.34.01'
homepage = 'http://root.cern.ch/drupal/'
description = """The ROOT system provides a set of OO frameworks with all the functionality
needed to handle and analyze large amounts of data in a very efficient way."""
toolchain = {'name': 'intel', 'version': '2015a'}
toolchainopts = {'pic': True}
sources = ['%s_%s.source.tar.gz' % (name.lower(), version)]
source_urls = ['ftp://root.cern.ch/root/']
patches = [
'configure_FftwFromMkl_28.patch',
'ROOT-%(version)s_recent-ifort.patch',
]
python = 'Python'
pyver = '2.7.3'
dependencies = [
('GSL', '1.15'),
('libxml2', '2.8.0', '-%s-%s' % (python, pyver)),
(python, pyver),
]
# architecture
arch = 'linuxx8664icc'
# disable features
configopts = ' --disable-xft --disable-x11 --disable-xrootd --disable-mysql'
# enable features
configopts += ' --enable-unuran --enable-table --enable-explicitlink --enable-minuit2 --enable-roofit'
configopts += ' --with-gsl-incdir=$EBROOTGSL/include/gsl --with-gsl-libdir=$EBROOTGSL/lib'
configopts += ' --with-fftw3-incdir=$EBROOTIMKL/mkl/include/fftw --with-fftw3-libdir=$EBROOTIMKL/mkl/lib/intel64'
configopts += ' --with-xml-incdir=$EBROOTLIBXML2/include/libxml2/libxml --with-xml-libdir=$EBROOTLIBXML2/lib'
configopts += ' --with-python-libdir=$EBROOTPYTHON/lib'
moduleclass = 'data'