mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-11 19:51:36 +01:00
38 lines
898 B
Plaintext
38 lines
898 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: Taner Tas <taner76@gmail.com>
|
|
# Maintainer: Clayton Craft <clayton@craftyguy.net>
|
|
pkgname=libva-utils
|
|
pkgver=2.20.0
|
|
pkgrel=0
|
|
pkgdesc="Intel VA-API Media Applications and Scripts for libva"
|
|
options="!check" # Most tests fail
|
|
url="https://github.com/intel/libva-utils"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="
|
|
meson
|
|
libva-glx-dev
|
|
libdrm-dev
|
|
wayland-dev
|
|
"
|
|
source="https://github.com/01org/libva-utils/archive/$pkgver/libva-utils-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-Ddrm=true \
|
|
-Dx11=true \
|
|
-Dwayland=true \
|
|
-Dtests=false \
|
|
. output
|
|
meson compile -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
e0edf08f90fc5b360c0123cd77fcb125be289700e62e3d53c92312175e0ee082f3714af3784f4b087de1379bb384c1cfc0f5f881e5a9b31d4806bc3216eacbf0 libva-utils-2.20.0.tar.gz
|
|
"
|