mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-16 03:02:47 +02:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libva
|
|
pkgver=2.20.0
|
|
pkgrel=0
|
|
pkgdesc="Video Acceleration (VA) API for Linux"
|
|
url="https://01.org/linuxmedia"
|
|
arch="all"
|
|
options="!check" # No test suite.
|
|
license="MIT"
|
|
depends_dev="libx11-dev libxext-dev libxfixes-dev libdrm-dev"
|
|
makedepends="$depends_dev meson wayland-dev"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/intel/libva/archive/$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
( if [ -f "$startdir"/../libva-glx/APKBUILD ]; then
|
|
_v=$pkgver
|
|
. "$startdir"/../libva-glx/APKBUILD
|
|
if [ "$_v" != "$pkgver" ]; then
|
|
die "libva and libva-glx needs to be same version"
|
|
fi
|
|
fi )
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-Dwith_glx=no \
|
|
-Dwith_wayland=yes \
|
|
builddir
|
|
meson compile -C builddir
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C builddir
|
|
}
|
|
|
|
sha512sums="
|
|
85f4aa6b6e9173d407ca3987745f985d0f898091f14c947a928b6db662a03b5cfe82483901690d81618697fe17a2c41ff6694a611f3654d5ab06840da987e40d libva-2.20.0.tar.gz
|
|
"
|