xorg/libvdpau/Pkgfile

23 lines
721 B
Plaintext
Raw Normal View History

2014-07-02 13:07:34 +02:00
# Description: Video Decode and Presentation API for Unix provides a complete solution for decoding, post-processing, compositing, and displaying compressed or uncompressed video streams.
2020-06-19 03:24:47 +02:00
# URL: https://gitlab.freedesktop.org/vdpau/libvdpau
2014-07-02 13:07:34 +02:00
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: xorg-libxext meson ninja
2014-07-02 13:07:34 +02:00
name=libvdpau
2022-03-13 10:16:41 +01:00
version=1.5
2015-03-12 12:03:33 +01:00
release=1
source=(https://gitlab.freedesktop.org/vdpau/$name/-/archive/$version//$name-$version.tar.bz2)
2014-07-02 13:07:34 +02:00
build() {
2020-11-04 17:19:38 +01:00
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain \
2022-03-13 10:16:41 +01:00
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
2020-11-04 17:19:38 +01:00
-D documentation=false
meson compile -C build -j ${JOBS:-1}
2020-04-25 15:09:43 +02:00
DESTDIR=$PKG meson install -C build
2014-07-02 13:07:34 +02:00
}