diff options
author | Maxin B. John <maxin.john@intel.com> | 2017-08-14 15:09:05 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-17 00:21:15 +0100 |
commit | 915715e4d01370cfe9a9dbc26138c84763170ab1 (patch) | |
tree | b648d684252619e67989e3330681a25a868fc03f /meta/recipes-graphics | |
parent | 1d809c1a306d28f775f587aa73d6cdc1f5cbb335 (diff) | |
download | poky-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.bb | 30 |
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 @@ | |||
1 | SUMMARY = "libva-utils is a collection of utilities from libva project" | ||
2 | |||
3 | DESCRIPTION = "libva-utils is a collection of utilities \ | ||
4 | and examples to exercise VA-API in accordance with the libva \ | ||
5 | project.VA-API is an open-source library and API specification, \ | ||
6 | which provides access to graphics hardware acceleration capabilities \ | ||
7 | for video processing. It consists of a main library and driver-specific \ | ||
8 | acceleration backends for each supported hardware vendor" | ||
9 | |||
10 | HOMEPAGE = "https://01.org/linuxmedia/vaapi" | ||
11 | BUGTRACKER = "https://github.com/01org/libva-utils/issues" | ||
12 | |||
13 | SECTION = "x11" | ||
14 | LICENSE = "MIT" | ||
15 | LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e" | ||
16 | |||
17 | SRC_URI = "git://github.com/01org/libva-utils.git;branch=v1.8-branch" | ||
18 | SRCREV = "011c709b98b52db3b10aeb361dfea9da43930364" | ||
19 | UPSTREAM_CHECK_URI = "https://github.com/01org/libva-utils/releases" | ||
20 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" | ||
21 | |||
22 | S = "${WORKDIR}/git" | ||
23 | |||
24 | DEPENDS = "libva" | ||
25 | |||
26 | inherit autotools pkgconfig distro_features_check | ||
27 | |||
28 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" | ||
29 | PACKAGECONFIG[x11] = "--enable-x11,--disable-x11,virtual/libx11 libxext libxfixes" | ||
30 | PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland-native wayland" | ||