46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Template file for 'libva-glx'
|
|
#
|
|
# THIS PACKAGE IS SPLITTED FROM "libva" TO AVOID A CYCLIC DEPENDENCY:
|
|
#
|
|
# libva -> libGL -> libva
|
|
#
|
|
# KEEP THIS PACKAGE SYNCHRONIZED WITH "libva".
|
|
#
|
|
pkgname=libva-glx
|
|
version=1.6.0
|
|
revision=1
|
|
wrksrc="libva-${version}"
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --enable-glx --enable-egl"
|
|
hostmakedepends="automake pkg-config libtool"
|
|
makedepends="libva-devel libXfixes-devel MesaLib-devel wayland-devel"
|
|
short_desc="Video Acceleration (VA) API - GLX backend"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://freedesktop.org/wiki/Software/vaapi"
|
|
license="MIT"
|
|
distfiles="http://www.freedesktop.org/software/vaapi/releases/libva/libva-${version}.tar.bz2"
|
|
checksum=3ad9dc9c1a6a10e9cc4234c2a1cd5e568ec0cd25145e86875eba6e0d69153458
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
# We are only interested in the glx component, remove everything else.
|
|
mkdir -p ${wrksrc}/temp/usr/lib/pkgconfig ${wrksrc}/temp/usr/include/va
|
|
mv ${DESTDIR}/usr/lib/libva-{egl,glx}* ${wrksrc}/temp/usr/lib
|
|
mv ${DESTDIR}/usr/include/va/va_*{egl,glx}.h ${wrksrc}/temp/usr/include/va
|
|
mv ${DESTDIR}/usr/lib/pkgconfig/libva-{egl,glx}.pc ${wrksrc}/temp/usr/lib/pkgconfig
|
|
rm -rf ${DESTDIR}/*
|
|
mv ${wrksrc}/temp/* ${DESTDIR}
|
|
vlicense COPYING
|
|
}
|
|
|
|
libva-glx-devel_package() {
|
|
depends="libva-devel ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|