summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1ad5dba89f73cdaa05dd07eadf3f297c88e6abd3 (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
38
39
40
41
42
43
44
45
46
47
48
# Maintainer: Yamashita Ren
# Contributor: Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=havsfunc
pkgname=vapoursynth-plugin-${_plug}-light-git
pkgver=r22.8.g5d7c34d
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug}. (Optional Depends, GIT Version)"
arch=('any')
url='http://forum.doom9.org/showthread.php?t=166582'
license=('GPL')
optdepends=('vapoursynth-plugin-addgrain-git'
            'vapoursynth-plugin-awarpsharp2-git'
            'vapoursynth-plugin-bilateral-git'
            'vapoursynth-plugin-ctmf-git'
            'vapoursynth-plugin-dctfilter-git'
            'vapoursynth-plugin-deblock-git'
            'vapoursynth-plugin-dfttest-git'
            'vapoursynth-plugin-eedi2-git'
            'vapoursynth-plugin-fft3dfilter-git'
            'vapoursynth-plugin-f3kdb-git'
            'vapoursynth-plugin-fluxsmooth'
            'vapoursynth-plugin-fmtconv'
            'vapoursynth-plugin-genericfilters-git'
            'vapoursynth-plugin-knlmeanscl'
            'vapoursynth-plugin-mvtools'
            'vapoursynth-plugin-mvsfunc-git'
            'vapoursynth-plugin-nnedi3-git'
            'vapoursynth-plugin-sangnommod-git'
            'vapoursynth-plugin-scenechange'
            'vapoursynth-plugin-temporalsoften-git'
            )
makedepends=('git')
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}" "vapoursynth-plugin-${_plug}-git")
source=("git+https://github.com/HomeOfVapourSynthEvolution/havsfunc.git")
sha1sums=('SKIP')

_sites_packages="$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")"

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

package() {
  install -Dm644 "${_plug}/${_plug}.py" "${pkgdir}${_sites_packages}/${_plug}.py"
}