GST-plugins-base-0.10.36-intel-2018.eb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. easyblock = 'ConfigureMake'
  2. name = 'GST-plugins-base'
  3. version = '0.10.36'
  4. homepage = 'http://gstreamer.freedesktop.org/'
  5. description = """GStreamer is a library for constructing graphs of media-handling
  6. components. The applications it supports range from simple
  7. Ogg/Vorbis playback, audio/video streaming to complex audio
  8. (mixing) and video (non-linear editing) processing."""
  9. toolchain = {'name': 'intel', 'version': '2018'}
  10. source_urls = ['http://gstreamer.freedesktop.org/src/gst-plugins-base']
  11. sources = [SOURCELOWER_TAR_XZ]
  12. checksums = ['1fe45c3894903001d4d008b0713dab089f53726dcb5842d5b40c2595a984e64a']
  13. dependencies = [('GStreamer', '0.10.36')]
  14. # does not work with Bison 3.x
  15. builddependencies = [
  16. ('Bison', '2.7'),
  17. ]
  18. sanity_check_paths = {
  19. 'files': ['bin/gst-%s-%%(version_major_minor)s' % x for x in ['discoverer', 'visualise']] +
  20. ['lib/libgst%s-%%(version_major_minor)s.%s' % (x, SHLIB_EXT) for x in ['app', 'audio', 'video']],
  21. 'dirs': ['include', 'share']
  22. }
  23. modextrapaths = {
  24. 'GI_TYPELIB_PATH': 'share',
  25. 'XDG_DATA_DIRS': 'share',
  26. }
  27. moduleclass = 'vis'