mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 19:36:48 +02:00
30 lines
848 B
Text
30 lines
848 B
Text
# Contributor: Sam Nystrom <sam@samnystrom.dev>
|
|
# Maintainer: Sam Nystrom <sam@samnystrom.dev>
|
|
pkgname=libvmaf
|
|
pkgver=3.0.0
|
|
pkgrel=0
|
|
pkgdesc="Perceptual video quality assessment based on multi-method fusion"
|
|
url="https://github.com/Netflix/vmaf"
|
|
arch="all"
|
|
license="BSD-2-Clause-Patent"
|
|
makedepends="meson nasm xxd"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Netflix/vmaf/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/vmaf-$pkgver/libvmaf"
|
|
|
|
build() {
|
|
abuild-meson . output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --no-rebuild --print-errorlogs -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
9e356bb274ce7d5d85a64d2a1a122ea9d267809edd83bb6e663fb348a1a46355882eb9044982bf679f03df7f93c6f66c9b0d9a94661979b2c722db30b21c4f32 libvmaf-3.0.0.tar.gz
|
|
"
|