modified: v/VTune/VTune-2018_update2.eb

new file:   v/VTune/VTune-2018_update3.eb


Former-commit-id: 5336f58d150d12a70e901562dbbcd5b72ccc3f42
This commit is contained in:
Lukáš Krupčík 2018-06-07 09:33:15 +02:00
parent dcc51f1b8e
commit d588ee7516
2 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# IT4Innovations 2018
name = 'VTune'
version = '2018_update2'

View File

@ -0,0 +1,34 @@
# IT4Innovations 2018
name = 'VTune'
version = '2018_update3'
homepage = 'http://software.intel.com/en-us/intel-vtune-amplifier-xe'
description = "Intel VTune Amplifier XE 2016 is the premier performance profiler for C, C++, C#, Fortran, Assembly and Java."
toolchain = {'name': 'dummy', 'version': ''}
sources = ['vtune_amplifier_%(version)s.tar.gz']
checksums = ['ed57a8cf36220579570ef594678917d6']
dontcreateinstalldir = 'True'
# license file
license_file = '/apps/licenses/intel/license.lic'
sanity_check_paths = {
'files': [],
'dirs': ['vtune_amplifier_2018.3.0.558279'],
}
# Do necessary post-install steps to build VTune kernel modules
postinstallcmds = [
'mkdir %(installdir)s/modules',
'cd %(installdir)s/vtune_amplifier/sepdk/src/ && '
'./build-driver --install-dir=%(installdir)s/modules --non-interactive',
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/pax/insmod-pax -i',
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/vtsspp/insmod-vtsspp -i',
'sed "s|DEFAULT_GROUP=vtune|DEFAULT_GROUP=wheel|" %(installdir)s/modules/insmod-sep -i',
]
moduleclass = 'tools'