895f21bf39
Avoid an out-of-tree source file va_drm_utils.c by creating a symlink from va/wayland/va_drm_utils.c to var/drm/va_drm_utils.c This fixes the autotools with gcc6 wrong dependency for this file.
33 lines
996 B
Bash
33 lines
996 B
Bash
# Template file for 'libva'
|
|
pkgname=libva
|
|
version=1.7.2
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --enable-x11 --disable-egl --disable-glx"
|
|
hostmakedepends="automake pkg-config libtool"
|
|
makedepends="libXfixes-devel libXext-devel libdrm-devel wayland-devel"
|
|
short_desc="Video Acceleration (VA) API"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://freedesktop.org/wiki/Software/vaapi"
|
|
license="MIT"
|
|
distfiles="${FREEDESKTOP_SITE}/vaapi/releases/libva/libva-${version}.tar.bz2"
|
|
checksum=5dd61cf16a5648b680e6146a58064e93be11bf4e65a9e4e30f1e9cb8ecfa2c13
|
|
|
|
pre_configure() {
|
|
# Create a symbolic link to avoid out of source tree compiling
|
|
ln -sf ../drm/va_drm_utils.c va/wayland/va_drm_utils.c
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libva-devel_package() {
|
|
depends="wayland-devel ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|