summaryrefslogtreecommitdiff
blob: d8306235787743a2a40faf53300ece7fa91bad0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit meson-multilib

DESCRIPTION="C libary for Netflix's Perceptual video quality assessment"
HOMEPAGE="https://github.com/Netflix/vmaf"

if [[ ${PV} == "9999" ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/Netflix/vmaf.git"
else
	SRC_URI="
		https://github.com/Netflix/vmaf/archive/v${PV}.tar.gz -> ${P}.tar.gz
	"
	KEYWORDS="~amd64 ~x86"
fi

LICENSE="BSD-2-with-patent"
SLOT="0"

BDEPEND="
	dev-lang/nasm
	app-editors/vim-core
"
# The app-editors/vim-core dep is needed to embed models within the library
# could be made into a useflag if someones express the need for it
# see https://github.com/Netflix/vmaf/blob/master/libvmaf/meson_options.txt#L21

RDEPEND="${BDEPEND}"

S="${WORKDIR}/vmaf-${PV}"

multilib_src_configure() {
	EMESON_SOURCE="${S}/libvmaf"
	meson_src_configure
}

multilib_src_install() {
	meson_src_install
	find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die
}

multilib_src_install_all() {
	einstalldocs

	insinto "/usr/share/vmaf"
	doins -r "${S}/model"
}