mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-26 10:36:42 +07:00
22 lines
864 B
Plaintext
22 lines
864 B
Plaintext
# libvdpau
|
|
# required for libvdpau-sunxi
|
|
local package_name="libvdpau"
|
|
local package_repo="https://anongit.freedesktop.org/git/vdpau/libvdpau.git"
|
|
local package_ref="branch:master"
|
|
local package_builddeps="graphviz ghostscript doxygen-latex x11proto-dri2-dev pkg-config libxext-dev libx11-dev dh-autoreconf"
|
|
local package_upstream_version="1.1.1-10"
|
|
local package_install_chroot="libvdpau1 libvdpau-dev"
|
|
local package_install_target="libvdpau1"
|
|
local package_component="${release}-desktop"
|
|
|
|
package_checkbuild()
|
|
{
|
|
# we don't support running kernels < 3.13 on Stretch or Bionic
|
|
[[ $release != xenial && $release != stretch && $release != bionic && $release != disco && $release != buster && $release != focal ]]
|
|
}
|
|
|
|
package_checkinstall()
|
|
{
|
|
[[ $LINUXFAMILY == sun*i && $BRANCH == legacy && $RELEASE != stretch && $RELEASE != bionic && $BUILD_DESKTOP == yes ]]
|
|
}
|