mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-29 12:31:35 +01:00
42 lines
947 B
Plaintext
42 lines
947 B
Plaintext
# Contributor: Taner Tas <taner76@gmail.com>
|
|
# Maintainer: Taner Tas <taner76@gmail.com>
|
|
pkgname=libva-utils
|
|
pkgver=2.5.0
|
|
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
|
|
libx11-dev
|
|
libxext-dev
|
|
libxfixes-dev
|
|
wayland-dev
|
|
"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/intel/libva-utils/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libdir=/usr/lib \
|
|
--buildtype=release \
|
|
-Ddrm=true \
|
|
-Dx11=true \
|
|
-Dwayland=true \
|
|
-Dtests=false \
|
|
. output
|
|
ninja -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" ninja -C output install
|
|
}
|
|
|
|
sha512sums="02f1310b4e9ed384e02671520fc7df326cf5366a59d786bda00d6a9ceda620e38eada3bfdf4610c4e686960ef494a6323b7c04f70a3a5326639121471bfb566a libva-utils-2.5.0.tar.gz"
|