blob: 653505c3d394222d43fb844da11ad3c3bcf6d849 (
plain)
1 # Description: VDPAU driver for OpenGL/VAAPI
2 # URL: https://github.com/i-rinat/libvdpau-va-gl
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=libvdpau-va-gl
6 version=0.4.2
7 release=1
8 source=(https://github.com/i-rinat/libvdpau-va-gl/archive/v$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 mkdir build
13 cd build
14 cmake -DCMAKE_BUILD_TYPE=Release \
15 -DCMAKE_INSTALL_PREFIX=/usr ..
16
17 make install DESTDIR=$PKG
18
19 }
|