blob: 4cf3b201a7ddbcbb2eb15d6c731244e2f6bcb7e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
MAKEDEPS="cmake"
DEPS="musl libvdpau libx11 libva"
DESC="VPAU driver with OpenGL backend"
PKG_VER=0.4.2
SOURCE=https://github.com/i-rinat/libvdpau-va-gl/archive/v$PKG_VER/libvdpau-va-gl-$PKG_VER.tar.gz
build () {
mkdir build &&
cd build &&
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr .. &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|