20 lines
609 B
Plaintext
20 lines
609 B
Plaintext
# Description: Video Decode and Presentation API for Unix provides a complete solution for decoding, post-processing, compositing, and displaying compressed or uncompressed video streams.
|
|
# URL: http://cgit.freedesktop.org/vdpau/libvdpau
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-libxext meson ninja
|
|
|
|
name=libvdpau
|
|
version=1.3
|
|
release=1
|
|
source=(https://gitlab.freedesktop.org/vdpau/$name/-/archive/$version//$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson build \
|
|
--prefix /usr \
|
|
-Ddocumentation=false \
|
|
|
|
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
|
|
}
|