Skip to content

Instantly share code, notes, and snippets.

@gardar
Created January 16, 2019 02:56
Show Gist options
  • Save gardar/4796f240e9673eb6b9185c2b37c494f7 to your computer and use it in GitHub Desktop.
Save gardar/4796f240e9673eb6b9185c2b37c494f7 to your computer and use it in GitHub Desktop.
vapoursynth-plugin-nnedi3cl-git meson/ninja PKGBUILD
# Maintainer: Gustavo Alvarez <[email protected]>
_plug=nnedi3cl
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=r7.3.0.g2b74109
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
arch=('x86_64')
url='https://github.com/HomeOfVapourSynthEvolution/VapourSynth-NNEDI3CL'
license=('GPL2')
depends=('vapoursynth'
'vapoursynth-plugin-nnedi3_weights_bin'
'ocl-icd'
)
makedepends=('git'
'opencl-headers'
'boost'
'meson'
'ninja'
)
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=("${_plug}::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-NNEDI3CL.git")
sha256sums=('SKIP')
pkgver() {
cd "${_plug}"
echo "$(git describe --long --tags | tr - .)"
}
build() {
cd "${_plug}"
meson build
ninja -C build
}
package(){
cd "${_plug}"
install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
install -Dm755 build/lib${_plug}.so "${pkgdir}/usr/lib/vapoursynth/lib${_plug}.so"
rm -fr "${pkgdir}/usr/share/NNEDI3CL"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment