libX11-1.6.3-intel-2018.eb 874 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. easyblock = 'ConfigureMake'
  2. name = 'libX11'
  3. version = '1.6.3'
  4. homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
  5. description = """X11 client-side library"""
  6. toolchain = {'name': 'intel', 'version': '2018'}
  7. sources = [SOURCE_TAR_GZ]
  8. source_urls = [XORG_LIB_SOURCE]
  9. builddependencies = [
  10. ('xextproto', '7.3.0'),
  11. ('xcb-proto', '1.11', '', True),
  12. ('inputproto', '2.3.2'),
  13. ('xproto', '7.0.28'),
  14. ('libpthread-stubs', '0.3'),
  15. ('kbproto', '1.0.7'),
  16. ('xtrans', '1.3.5'),
  17. ('xorg-macros', '1.19.0'),
  18. ]
  19. dependencies = [
  20. ('libxcb', '1.11.1'),
  21. ]
  22. sanity_check_paths = {
  23. 'files': ['include/X11/%s' % x for x in [
  24. 'cursorfont.h', 'ImUtil.h', 'Xcms.h', 'XKBlib.h', 'XlibConf.h', 'Xlib.h', 'Xlibint.h', 'Xlib-xcb.h',
  25. 'Xlocale.h', 'Xregion.h', 'Xresource.h', 'Xutil.h',
  26. ]
  27. ],
  28. 'dirs': [],
  29. }
  30. moduleclass = 'vis'