Created
January 16, 2019 02:56
-
-
Save gardar/4796f240e9673eb6b9185c2b37c494f7 to your computer and use it in GitHub Desktop.
vapoursynth-plugin-nnedi3cl-git meson/ninja PKGBUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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