summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e4aff5ab9bd5d3598692ee83e14c000da0ca8bcf (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
# Maintainer : Yamashita Ren
# Contributor:  Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=waifu2x-w2xc
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=r6.7.g9cea4dd
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
arch=('i686' 'x86_64')
url="https://github.com/HomeOfVapourSynthEvolution/VapourSynth-Waifu2x-w2xc/"
license=('GPL2')
depends=('vapoursynth' 'waifu2x-converter-cpp')
makedepends=('git')
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=("${_plug}::git+https://github.com/HomeOfVapourSynthEvolution/VapourSynth-${_plug}.git")
sha1sums=('SKIP')

pkgver() {
  cd "${_plug}"
  echo "$(git describe --long --tags | tr - .)"
}

build() {
  cd "${_plug}"
  ./autogen.sh
  ./configure --prefix=/usr --libdir=/usr/lib/vapoursynth
  make
}

package(){
  cd "${_plug}"
  make install
  cp -R Waifu2x-w2xc/models ${pkgdir}/usr/lib/vapoursynth/models
  chmod -R a+w ${pkgdir}/usr/lib/vapoursynth/models
  install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README"
}