libva-utils_2.9.1.bb 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. SUMMARY = "libva-utils is a collection of utilities from libva project"
  2. DESCRIPTION = "libva-utils is a collection of utilities \
  3. and examples to exercise VA-API in accordance with the libva \
  4. project.VA-API is an open-source library and API specification, \
  5. which provides access to graphics hardware acceleration capabilities \
  6. for video processing. It consists of a main library and driver-specific \
  7. acceleration backends for each supported hardware vendor"
  8. HOMEPAGE = "https://01.org/linuxmedia/vaapi"
  9. BUGTRACKER = "https://github.com/intel/libva-utils/issues"
  10. SECTION = "x11"
  11. LICENSE = "MIT"
  12. LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e"
  13. SRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.9-branch"
  14. SRCREV = "50c7f19d65e2535940e31c6711352b36d6d64fd7"
  15. S = "${WORKDIR}/git"
  16. UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$"
  17. DEPENDS = "libva"
  18. inherit meson pkgconfig features_check
  19. # depends on libva which requires opengl
  20. REQUIRED_DISTRO_FEATURES = "opengl"
  21. PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
  22. PACKAGECONFIG[x11] = "-Dx11=true, -Dx11=false,virtual/libx11 libxext libxfixes"
  23. PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false,wayland-native wayland"