mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 14:59:41 +01:00
Github has announced there will be no more git:// fetching from their servers: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git and they're about to start having brownout periods to encourage people to update. This runs the conversion script over OE-Core to update our urls to use https instead of git. (From OE-Core rev: b37b61e9a1e448a34957db9ae39285d21352552e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.2 KiB
BlitzBasic
33 lines
1.2 KiB
BlitzBasic
SUMMARY = "libva-utils is a collection of utilities from libva project"
|
|
|
|
DESCRIPTION = "libva-utils is a collection of utilities \
|
|
and examples to exercise VA-API in accordance with the libva \
|
|
project.VA-API is an open-source library and API specification, \
|
|
which provides access to graphics hardware acceleration capabilities \
|
|
for video processing. It consists of a main library and driver-specific \
|
|
acceleration backends for each supported hardware vendor"
|
|
|
|
HOMEPAGE = "https://01.org/linuxmedia/vaapi"
|
|
BUGTRACKER = "https://github.com/intel/libva-utils/issues"
|
|
|
|
SECTION = "x11"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e"
|
|
|
|
SRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.13-branch;protocol=https"
|
|
SRCREV = "7bad184b2cf2ffaf4fb3cc71d4df63d7b142d592"
|
|
S = "${WORKDIR}/git"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$"
|
|
|
|
DEPENDS = "libva"
|
|
|
|
inherit meson pkgconfig features_check
|
|
|
|
# depends on libva which requires opengl
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
|
|
PACKAGECONFIG[x11] = "-Dx11=true, -Dx11=false,virtual/libx11 libxext libxfixes"
|
|
PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false,wayland-native wayland"
|