diff options
Diffstat (limited to 'recipes-graphics/libva/libva-intel_2.12.0.bb')
| -rw-r--r-- | recipes-graphics/libva/libva-intel_2.12.0.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/recipes-graphics/libva/libva-intel_2.12.0.bb b/recipes-graphics/libva/libva-intel_2.12.0.bb new file mode 100644 index 00000000..15a9391a --- /dev/null +++ b/recipes-graphics/libva/libva-intel_2.12.0.bb | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | SUMMARY = "Video Acceleration (VA) API for Linux" | ||
| 2 | DESCRIPTION = "Video Acceleration API (VA API) is a library (libVA) \ | ||
| 3 | and API specification which enables and provides access to graphics \ | ||
| 4 | hardware (GPU) acceleration for video processing on Linux and UNIX \ | ||
| 5 | based operating systems. Accelerated processing includes video \ | ||
| 6 | decoding, video encoding, subpicture blending and rendering. The \ | ||
| 7 | specification was originally designed by Intel for its GMA (Graphics \ | ||
| 8 | Media Accelerator) series of GPU hardware, the API is however not \ | ||
| 9 | limited to GPUs or Intel specific hardware, as other hardware and \ | ||
| 10 | manufacturers can also freely use this API for hardware accelerated \ | ||
| 11 | video decoding." | ||
| 12 | |||
| 13 | HOMEPAGE = "https://01.org/linuxmedia/vaapi" | ||
| 14 | BUGTRACKER = "https://github.com/intel/libva/issues" | ||
| 15 | |||
| 16 | SECTION = "x11" | ||
| 17 | LICENSE = "MIT" | ||
| 18 | LIC_FILES_CHKSUM = "file://COPYING;md5=2e48940f94acb0af582e5ef03537800f" | ||
| 19 | |||
| 20 | SRC_URI = "https://github.com/intel/libva/releases/download/${PV}/libva-${PV}.tar.bz2" | ||
| 21 | SRC_URI[sha256sum] = "d3f4873715077a8c969c9bfe4ba8455a133353176be0ffe0c41ffd4155c9a8c8" | ||
| 22 | |||
| 23 | S = "${WORKDIR}/libva-${PV}" | ||
| 24 | |||
| 25 | UPSTREAM_CHECK_URI = "https://github.com/intel/libva/releases" | ||
| 26 | |||
| 27 | DEPENDS = "libdrm" | ||
| 28 | |||
| 29 | inherit meson pkgconfig | ||
| 30 | |||
| 31 | PACKAGECONFIG ??= " \ | ||
| 32 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'glx', '', d)} \ | ||
| 33 | ${@bb.utils.filter('DISTRO_FEATURES', 'x11 wayland', d)} \ | ||
| 34 | " | ||
| 35 | |||
| 36 | PACKAGECONFIG[x11] = "-Dwith_x11=yes,-Dwith_x11=no,virtual/libx11 libxext libxfixes" | ||
| 37 | PACKAGECONFIG[glx] = "-Dwith_glx=yes,-Dwith_glx=no,virtual/mesa" | ||
| 38 | |||
| 39 | PACKAGECONFIG[wayland] = "-Dwith_wayland=yes,-Dwith_wayland=no,wayland-native wayland" | ||
| 40 | |||
| 41 | PACKAGES =+ "${PN}-x11 ${PN}-glx ${PN}-wayland" | ||
| 42 | |||
| 43 | RDEPENDS_${PN}-x11 =+ "${PN}" | ||
| 44 | RDEPENDS_${PN}-glx =+ "${PN}-x11" | ||
| 45 | |||
| 46 | FILES_${PN}-x11 =+ "${libdir}/libva-x11*${SOLIBS}" | ||
| 47 | FILES_${PN}-glx =+ "${libdir}/libva-glx*${SOLIBS}" | ||
| 48 | FILES_${PN}-wayland =+ "${libdir}/libva-wayland*${SOLIBS}" | ||
| 49 | |||
| 50 | PROVIDES += "libva" | ||
| 51 | RPROVIDES_${PN} += "libva" | ||
| 52 | RPROVIDES_${PN}-x11 += "libva-x11" | ||
| 53 | RPROVIDES_${PN}-glx += "libva-glx" | ||
| 54 | RPROVIDES_${PN}-wayland += "libva-wayland" | ||
