diff options
Diffstat (limited to 'recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb')
-rw-r--r-- | recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb b/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb new file mode 100644 index 00000000..2112af2c --- /dev/null +++ b/recipes-multimedia/libva/intel-vaapi-driver_2.4.1.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "VA driver for Intel G45 & HD Graphics family" | ||
2 | DESCRIPTION = "intel-vaapi-driver is the VA-API implementation \ | ||
3 | for Intel G45 chipsets and Intel HD Graphics for Intel Core \ | ||
4 | processor family." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/intel/intel-vaapi-driver" | ||
7 | BUGTRACKER = "https://github.com/intel/intel-vaapi-driver/issues" | ||
8 | |||
9 | LICENSE = "MIT" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f" | ||
11 | |||
12 | COMPATIBLE_HOST = '(i.86|x86_64).*-linux' | ||
13 | |||
14 | DEPENDS = "libva libdrm" | ||
15 | |||
16 | SRC_URI = "https://github.com/intel/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.bz2 \ | ||
17 | " | ||
18 | |||
19 | SRC_URI[sha256sum] = "0081fce08eb3a83f7d99c3b853c8fdfa0af437b8f5b0fb7c66faeb83bcbe0c19" | ||
20 | |||
21 | UPSTREAM_CHECK_URI = "https://github.com/intel/intel-vaapi-driver/releases" | ||
22 | |||
23 | inherit meson pkgconfig ${COMPAT_DISTRO_FEATURE_CHECK} | ||
24 | |||
25 | REQUIRED_DISTRO_FEATURES = "opengl" | ||
26 | |||
27 | PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "x11", "", d)} \ | ||
28 | ${@bb.utils.contains("DISTRO_FEATURES", "opengl wayland", "wayland", "", d)}" | ||
29 | PACKAGECONFIG[x11] = "-Dwith_x11=yes, -Dwith_x11=no" | ||
30 | PACKAGECONFIG[wayland] = "-Dwith_wayland=yes, -Dwith_wayland=no, wayland wayland-native virtual/egl" | ||
31 | |||
32 | FILES_${PN} += "${libdir}/dri/*.so" | ||
33 | FILES_${PN}-dev += "${libdir}/dri/*.la" | ||
34 | FILES_${PN}-dbg += "${libdir}/dri/.debug" | ||