Qt5-5.8.0-intel-2018.eb 802 B

123456789101112131415161718192021222324252627282930313233
  1. easyblock = 'EB_Qt'
  2. name = 'Qt5'
  3. version = '5.8.0'
  4. homepage = 'http://qt.io/'
  5. description = "Qt is a comprehensive cross-platform C++ application framework."
  6. toolchain = {'name': 'intel', 'version': '2018'}
  7. source_urls = [
  8. 'http://download.qt.io/official_releases/qt/%(version_major_minor)s/%(version)s/single/',
  9. 'http://download.qt.io/archive/qt/%(version_major_minor)s/%(version)s/single/'
  10. ]
  11. sources = ['qt-everywhere-opensource-src-%(version)s.tar.xz']
  12. patches = ['Qt5-5.7.1_fix-nan-inf.patch']
  13. builddependencies = [
  14. ('pkg-config', '0.29.2'),
  15. ]
  16. # qtgamepad needs recent kernel/libevdev (fails on RHEL 6.x)
  17. configopts = '-skip qtgamepad'
  18. dependencies = [
  19. ('GLib', '2.52.0'),
  20. ('libpng', '1.6.32'),
  21. ('X11', '20170805'),
  22. ('libGLU', '9.0.0'),
  23. ]
  24. moduleclass = 'devel'