initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_LIBVDPAU
|
||||
bool "libvdpau"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_XLIB_LIBX11
|
||||
select BR2_PACKAGE_XLIB_LIBXEXT
|
||||
help
|
||||
VDPAU is the Video Decode and Presentation API for UNIX.
|
||||
It provides an interface to video decode acceleration and
|
||||
presentation hardware present in modern GPUs.
|
||||
|
||||
http://freedesktop.org/wiki/Software/VDPAU
|
||||
|
||||
comment "libvdpau needs a toolchain w/ threads, C++"
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
||||
@@ -0,0 +1,5 @@
|
||||
# From https://lists.x.org/archives/xorg-announce/2019-August/003021.html
|
||||
sha256 b5a52eeac9417edbc396f26c40591ba5df0cd18285f68d84614ef8f06196e50e libvdpau-1.3.tar.bz2
|
||||
sha512 c06c23062816e8b207d38d9d53df43a1b193bb9836b48bd6d79a63d76522e87d383c446285b9877fe9c99faa0d290da8a49ccbb58eefa138cc38d0929a8e1330 libvdpau-1.3.tar.bz2
|
||||
# Locally computed
|
||||
sha256 ce4af7294872ff07f6e82ae5f1f5eba926215b1e2fb6d55d64759de082458d61 COPYING
|
||||
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# libvdpau
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBVDPAU_VERSION = 1.3
|
||||
LIBVDPAU_SOURCE = libvdpau-$(LIBVDPAU_VERSION).tar.bz2
|
||||
LIBVDPAU_SITE = \
|
||||
https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/$(LIBVDPAU_VERSION)
|
||||
LIBVDPAU_LICENSE = MIT
|
||||
LIBVDPAU_LICENSE_FILES = COPYING
|
||||
LIBVDPAU_INSTALL_STAGING = YES
|
||||
|
||||
LIBVDPAU_DEPENDENCIES = host-pkgconf xlib_libX11 xlib_libXext
|
||||
|
||||
LIBVDPAU_CONF_OPTS = \
|
||||
-Ddocumentation=false \
|
||||
-Dmoduledir=/usr/lib/vdpau
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORGPROTO),y)
|
||||
LIBVDPAU_DEPENDENCIES += xorgproto
|
||||
LIBVDPAU_CONF_OPTS += -Ddri2=true
|
||||
else
|
||||
LIBVDPAU_CONF_OPTS += -Ddri2=false
|
||||
endif
|
||||
|
||||
$(eval $(meson-package))
|
||||
Reference in New Issue
Block a user