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

prepare() {
	mkdir -p build
}

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

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

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

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