mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00

Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
35 lines
1.3 KiB
BlitzBasic
35 lines
1.3 KiB
BlitzBasic
SUMMARY = "VA driver for Intel G45 & HD Graphics family"
|
|
DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \
|
|
for Intel G45 chipsets and Intel HD Graphics for Intel Core \
|
|
processor family."
|
|
|
|
HOMEPAGE = "https://github.com/intel/intel-vaapi-driver"
|
|
BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
DEPENDS = "libva libdrm"
|
|
|
|
SRC_URI = "https://github.com/intel/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.bz2 \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "0081fce08eb3a83f7d99c3b853c8fdfa0af437b8f5b0fb7c66faeb83bcbe0c19"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/intel/intel-vaapi-driver/releases"
|
|
|
|
inherit meson pkgconfig features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}"
|
|
PACKAGECONFIG[x11] = "-Dwith_x11=yes, -Dwith_x11=no"
|
|
PACKAGECONFIG[wayland] = "-Dwith_wayland=yes, -Dwith_wayland=no, wayland wayland-native virtual/egl"
|
|
|
|
FILES:${PN} += "${libdir}/dri/*.so"
|
|
FILES:${PN}-dev += "${libdir}/dri/*.la"
|
|
FILES:${PN}-dbg += "${libdir}/dri/.debug"
|