forked from ports/compat-32
24 lines
561 B
Plaintext
24 lines
561 B
Plaintext
# Description: Video Acceleration API to enable hardware accelerated video decode/encode.
|
|
# URL: https://01.org/linuxmedia/vaapi
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libdrm-32 xorg-libxext-32 xorg-libxfixes-32 libva
|
|
|
|
name=libva-32
|
|
version=2.6.1
|
|
release=1
|
|
source=(https://github.com/intel/libva/releases/download/$version/libva-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd libva-$version
|
|
|
|
CONFIG_SHELL=/bin/bash \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|