summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia/libva/libva-utils-intel_2.7.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-multimedia/libva/libva-utils-intel_2.7.1.bb')
-rw-r--r--recipes-multimedia/libva/libva-utils-intel_2.7.1.bb33
1 files changed, 29 insertions, 4 deletions
diff --git a/recipes-multimedia/libva/libva-utils-intel_2.7.1.bb b/recipes-multimedia/libva/libva-utils-intel_2.7.1.bb
index 3a0d278e..137cd866 100644
--- a/recipes-multimedia/libva/libva-utils-intel_2.7.1.bb
+++ b/recipes-multimedia/libva/libva-utils-intel_2.7.1.bb
@@ -1,13 +1,38 @@
1# Latest upgrades for media components depend upon libva-utils v2.7.1 1# Latest upgrades for media components depend upon libva-utils v2.7.1
2# So need this upgrade 2# So need this upgrade
3 3
4require recipes-graphics/libva/libva-utils_2.6.0.bb 4SUMMARY = "libva-utils is a collection of utilities from libva project"
5 5
6SRC_URI_remove = "git://github.com/intel/libva-utils.git;branch=v2.6-branch" 6DESCRIPTION = "libva-utils is a collection of utilities \
7SRC_URI_prepend = "git://github.com/intel/libva-utils.git;branch=v2.7-branch " 7and examples to exercise VA-API in accordance with the libva \
8project.VA-API is an open-source library and API specification, \
9which provides access to graphics hardware acceleration capabilities \
10for video processing. It consists of a main library and driver-specific \
11acceleration backends for each supported hardware vendor"
8 12
13HOMEPAGE = "https://01.org/linuxmedia/vaapi"
14BUGTRACKER = "https://github.com/intel/libva-utils/issues"
15
16SECTION = "x11"
17LICENSE = "MIT"
18LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e"
19
20SRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.7-branch"
9SRCREV = "5a24c635f6fb2b9ac31cab3360afca50e1860812" 21SRCREV = "5a24c635f6fb2b9ac31cab3360afca50e1860812"
10S = "${WORKDIR}/git" 22S = "${WORKDIR}/git"
11 23
24UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
25
26DEPENDS = "libva"
27
28inherit meson pkgconfig ${COMPAT_DISTRO_FEATURE_CHECK}
29
30# depends on libva which requires opengl
31REQUIRED_DISTRO_FEATURES = "opengl"
32
33PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
34PACKAGECONFIG[x11] = "-Dx11=true, -Dx11=false,virtual/libx11 libxext libxfixes"
35PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false,wayland-native wayland"
36
12PROVIDES = "libva-utils" 37PROVIDES = "libva-utils"
13RPROVIDES_${PN} += "libva-uitls" 38RPROVIDES_${PN} += "libva-utils"