18 lines
499 B
Plaintext
18 lines
499 B
Plaintext
# Description: VDPAU driver for OpenGL/VAAPI
|
|
# URL: https://github.com/i-rinat/libvdpau-va-gl
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: cmake libglvnd libva
|
|
|
|
name=libvdpau-va-gl
|
|
version=0.4.2
|
|
release=1
|
|
source=(https://github.com/i-rinat/libvdpau-va-gl/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cmake -S$name-$version -Bbuild -GNinja \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|