summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8f80647fa1986567beb77a1c4479dd2f8789f3c9 (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
52
53
_plug=rife-ncnn-vulkan
pkgname=vapoursynth-plugin-${_plug}
pkgver=9_mod_v31
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (Real-Time Intermediate Flow Estimation for Video Frame Interpolation)"
arch=('x86_64')
url='https://github.com/HomeOfVapourSynthEvolution/VapourSynth-RIFE-ncnn-Vulkan'
license=('MIT')
depends=(
	'ncnn'
	'vapoursynth'
)
optdepends=(
	'vapoursynth-plugin-vmaf: Skip interpolating static frames'
)
makedepends=(
	'git'
	'meson'
	'cmake'
	'vulkan-headers'
)
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=("${_plug}::git+https://github.com/styler00dollar/VapourSynth-RIFE-ncnn-Vulkan.git")
sha256sums=('SKIP')

pkgver() {
	cd "${_plug}"
	git describe --tags | sed 's/^r//; s/-/+/g'
}

prepare() {
	mkdir -p build

	cd "${_plug}"
	sed "/modelPath/ s|/models|/${_plug}-models|g" -i RIFE/plugin.cpp
}

build() {
	cd build
	arch-meson "../${_plug}" --libdir /usr/lib/vapoursynth -Duse_system_ncnn=true

	ninja
}

package(){
	DESTDIR="${pkgdir}" ninja -C build install

	mv "${pkgdir}/usr/lib/vapoursynth/models" "${pkgdir}/usr/lib/vapoursynth/${_plug}-models"

	install -Dm644 "${_plug}/README.md" "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
	install -Dm644 "${_plug}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}