summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2017-08-14 15:09:05 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-17 00:21:15 +0100
commit915715e4d01370cfe9a9dbc26138c84763170ab1 (patch)
treeb648d684252619e67989e3330681a25a868fc03f /meta/recipes-graphics
parent1d809c1a306d28f775f587aa73d6cdc1f5cbb335 (diff)
downloadpoky-915715e4d01370cfe9a9dbc26138c84763170ab1.tar.gz
libva-utils: add recipe
Utilities and tests in the libva was spun-off as libva-utils during 1.8.0 release. libva-utils is a collection of utilities and examples to exercise VA-API in accordance with the libva project (From OE-Core rev: ab7f6ba2bab04bdfaa76a1de83806dbadc82fefa) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/libva/libva-utils_1.8.3.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libva/libva-utils_1.8.3.bb b/meta/recipes-graphics/libva/libva-utils_1.8.3.bb
new file mode 100644
index 0000000000..9c2c0d657b
--- /dev/null
+++ b/meta/recipes-graphics/libva/libva-utils_1.8.3.bb
@@ -0,0 +1,30 @@
1SUMMARY = "libva-utils is a collection of utilities from libva project"
2
3DESCRIPTION = "libva-utils is a collection of utilities \
4and examples to exercise VA-API in accordance with the libva \
5project.VA-API is an open-source library and API specification, \
6which provides access to graphics hardware acceleration capabilities \
7for video processing. It consists of a main library and driver-specific \
8acceleration backends for each supported hardware vendor"
9
10HOMEPAGE = "https://01.org/linuxmedia/vaapi"
11BUGTRACKER = "https://github.com/01org/libva-utils/issues"
12
13SECTION = "x11"
14LICENSE = "MIT"
15LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e"
16
17SRC_URI = "git://github.com/01org/libva-utils.git;branch=v1.8-branch"
18SRCREV = "011c709b98b52db3b10aeb361dfea9da43930364"
19UPSTREAM_CHECK_URI = "https://github.com/01org/libva-utils/releases"
20UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
21
22S = "${WORKDIR}/git"
23
24DEPENDS = "libva"
25
26inherit autotools pkgconfig distro_features_check
27
28PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
29PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxext libxfixes"
30PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland-native wayland"