e926c83928
Release notes: https://github.com/intel/libva/blob/v2.20-branch/NEWS Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
38 lines
937 B
Makefile
38 lines
937 B
Makefile
################################################################################
|
|
#
|
|
# libva
|
|
#
|
|
################################################################################
|
|
|
|
LIBVA_VERSION = 2.20.0
|
|
LIBVA_SITE = $(call github,intel,libva,$(LIBVA_VERSION))
|
|
LIBVA_LICENSE = MIT
|
|
LIBVA_LICENSE_FILES = COPYING
|
|
LIBVA_INSTALL_STAGING = YES
|
|
LIBVA_DEPENDENCIES = host-pkgconf libdrm
|
|
|
|
# libdrm is a hard-dependency
|
|
LIBVA_CONF_OPTS = \
|
|
-Ddisable_drm=false \
|
|
-Ddriverdir="/usr/lib/va"
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
LIBVA_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXfixes
|
|
LIBVA_CONF_OPTS += -Dwith_x11=yes
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
|
LIBVA_DEPENDENCIES += libgl
|
|
LIBVA_CONF_OPTS += -Dwith_glx=yes
|
|
endif
|
|
else
|
|
LIBVA_CONF_OPTS += -Dwith_glx=no -Dwith_x11=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WAYLAND),y)
|
|
LIBVA_DEPENDENCIES += wayland
|
|
LIBVA_CONF_OPTS += -Dwith_wayland=yes
|
|
else
|
|
LIBVA_CONF_OPTS += -Dwith_wayland=no
|
|
endif
|
|
|
|
$(eval $(meson-package))
|