25 lines
729 B
Plaintext
25 lines
729 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 compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libvdpau xorg-libxext-32
|
|
|
|
name=libvdpau-32
|
|
version=1.2
|
|
release=1
|
|
source=(https://gitlab.freedesktop.org/vdpau/${name%-*}/uploads/14b620084c027d546fa0b3f083b800c6/${name%-*}-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--disable-dependency-tracking \
|
|
--disable-documentation
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{etc,include}
|
|
}
|