summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2ce6c5bdcac484a9a2b651515d4c744152f4ae88 (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
# Maintainer: Hybridkernel <admin@hzqki.me>

_plug=rife-ncnn-vulkan
pkgname=vapoursynth-plugin-${_plug}-bin
pkgver=r9_mod_v32
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
arch=('x86_64')
url='https://github.com/styler00dollar/VapourSynth-RIFE-ncnn-Vulkan/releases/tag/r9_mod_v32'
license=('MIT')
depends=('vapoursynth')
makedepends=(
  'git'
  'meson'
  'cmake'
  'vulkan-headers'
)
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=(
  "https://github.com/styler00dollar/VapourSynth-RIFE-ncnn-Vulkan/releases/download/${pkgver}/librife_linux_x86-64.so"
  "https://github.com/styler00dollar/VapourSynth-RIFE-ncnn-Vulkan/raw/refs/heads/master/LICENSE"
)
sha256sums=(
  'SKIP'
  'SKIP'
)

package(){
  install -Dm644 "${srcdir}/librife_linux_x86-64.so" "${pkgdir}/usr/lib/vapoursynth/librife.so"
  install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}