libxcb-1.11.1-intel-2018.eb 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. easyblock = 'ConfigureMake'
  2. name = 'libxcb'
  3. version = '1.11.1'
  4. homepage = 'http://xcb.freedesktop.org/'
  5. description = """The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint,
  6. latency hiding, direct access to the protocol, improved threading support, and extensibility."""
  7. toolchain = {'name': 'intel', 'version': '2018'}
  8. source_urls = ['http://xcb.freedesktop.org/dist/']
  9. sources = [SOURCELOWER_TAR_GZ]
  10. builddependencies = [
  11. ('pkg-config', '0.29.2'),
  12. ('xcb-proto', '1.11', '', True),
  13. ('xproto', '7.0.28'),
  14. ('libpthread-stubs', '0.3'),
  15. ('xorg-macros', '1.19.0'),
  16. ]
  17. dependencies = [
  18. ('libXau', '1.0.8'),
  19. ('libXdmcp', '1.1.2'),
  20. ]
  21. sanity_check_paths = {
  22. 'files': ['lib/libxcb%s.a' % x for x in ['', '-composite', '-damage', '-dpms', '-dri2', '-glx',
  23. '-randr', '-record', '-render', '-res', '-screensaver',
  24. '-shape', '-shm', '-sync', '-xevie', '-xf86dri', '-xfixes',
  25. '-xinerama', '-xprint', '-xtest', '-xv', '-xvmc']],
  26. 'dirs': ['include/xcb', 'lib/pkgconfig'],
  27. }
  28. moduleclass = 'lib'