blob: 0208fe3fcbd50e78b96831a87f9697e0063d33c5 (
plain)
1 # Description: Video Acceleration API to enable hardware accelerated video decode/encode, version 1.8
2 # URL: https://01.org/linuxmedia/vaapi
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libdrm mesa3d libglvnd wayland xorg-libxfixes
5
6 name=libva1
7 version=1.8.3
8 release=1
9 source=(https://github.com/intel/libva/releases/download/$version/${name:0:5}-$version.tar.bz2 libva1.conf)
10
11 build() {
12 cd ${name:0:5}-$version
13 ./configure \
14 --prefix=/usr \
15 --libdir=/usr/lib/libva1 \
16 --includedir=/usr/include/libva1 \
17 --with-drivers-path=/usr/lib/libva1/dri \
18 --disable-va-messaging
19 make
20 make DESTDIR=$PKG install
21 install -d $PKG/etc/ld.so.conf.d
22 cp $SRC/libva1.conf $PKG/etc/ld.so.conf.d
23 }
|