Skip to content

Instantly share code, notes, and snippets.

@gardar
Created January 16, 2019 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gardar/9f5fccb434b75c36af70f106108dcb5d to your computer and use it in GitHub Desktop.
Save gardar/9f5fccb434b75c36af70f106108dcb5d to your computer and use it in GitHub Desktop.
vapoursynth-plugin-eedi3cl-git meson/ninja PKGBUILD
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
_plug=eedi3cl
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=r4.1.gefcba5f
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
arch=('i686' 'x86_64')
url='https://github.com/HomeOfVapourSynthEvolution/VapourSynth-EEDI3'
license=('GPL2')
depends=('vapoursynth'
'ocl-icd'
)
makedepends=('git'
'opencl-headers'
'boost'
'meson'
'ninja'
)
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}"
'vapoursynth-plugin-eedi3-ocl'
)
source=("${_plug}::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-EEDI3.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/libeedi3m.so "${pkgdir}/usr/lib/vapoursynth/libeedi3m.so"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment