mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-10 10:22:00 +01:00
35 lines
887 B
Plaintext
35 lines
887 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: Taner Tas <taner76@gmail.com>
|
|
# Maintainer: Taner Tas <taner76@gmail.com>
|
|
pkgname=libva-utils
|
|
pkgver=2.11.1
|
|
pkgrel=0
|
|
pkgdesc="Intel VA-API Media Applications and Scripts for libva"
|
|
options="!check" # Most tests fail
|
|
url="https://github.com/01org/libva-utils"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="
|
|
meson
|
|
libva-dev
|
|
libdrm-dev
|
|
wayland-dev
|
|
"
|
|
source="https://github.com/01org/libva-utils/archive/$pkgver/libva-utils-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Ddrm=true \
|
|
-Dx11=true \
|
|
-Dwayland=true \
|
|
-Dtests=false \
|
|
. output
|
|
meson compile ${JOBS:+-j ${JOBS}} -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="d64c4767269a810386e02426fce3bde6aa693ac899ace22900e4ae4918dfe461736fe0a031db36751281d5bd78960354cdfa4ca13c5f7c30cc67d05abdd0bcd2 libva-utils-2.11.1.tar.gz"
|