summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f9eb4dbbc986c4d8d7bb0d89530978b5ec6b42a2 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=havsfunc
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=33.150.g0f6a7d9
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug}. (GIT Version)"
arch=('any')
url='https://forum.doom9.org/showthread.php?t=166582'
license=('GPL')
depends=(
  'vapoursynth-plugin-adjust-git'
  'vapoursynth-plugin-mvsfunc-git'
  'vapoursynth-plugin-nnedi3_resample-git'
  'vapoursynth-plugin-vsrgtools-git'
  'vapoursynth-plugin-vstools-git'
  'vapoursynth-plugin-vsdenoise-git'
  'vapoursynth-plugin-vsmasktools-git'
)
optdepends=(
  'vapoursynth-plugin-addgrain-git'
  'vapoursynth-plugin-awarpsharp2-git'
  'vapoursynth-plugin-bm3d-git'
  'vapoursynth-plugin-bwdif-git'
  'vapoursynth-plugin-cas-git'
  'vapoursynth-plugin-ctmf-git'
  'vapoursynth-plugin-dctfilter-git'
  'vapoursynth-plugin-deblock'
  'vapoursynth-plugin-dfttest-git'
  'vapoursynth-plugin-eedi2-git'
  'vapoursynth-plugin-eedi3m-git'
  'vapoursynth-plugin-fft3dfilter-git'
  'vapoursynth-plugin-fluxsmooth'
  'vapoursynth-plugin-hqdn3d-git'
  'vapoursynth-plugin-knlmeanscl-git'
  'vapoursynth-plugin-misc-git'
  'vapoursynth-plugin-mvtools'
  'vapoursynth-plugin-neo_f3kdb-git'
  'vapoursynth-plugin-nnedi3cl-git'
  'vapoursynth-plugin-removegrain-git'
  'vapoursynth-plugin-sangnom-git'
  'vapoursynth-plugin-svpflow1'
  'vapoursynth-plugin-svpflow2-bin'
  'vapoursynth-plugin-ttempsmooth-git'
  'vapoursynth-plugin-znedi3-git'
)
makedepends=(
  'git'
  'python-build'
  'python-wheel'
  'python-installer'
  'python-setuptools'
  'python-hatchling'
)
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=('git+https://github.com/HomeOfVapourSynthEvolution/havsfunc.git')
sha256sums=('SKIP')

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

build() {
  cd "${_plug}"
  python -m build --wheel --no-isolation
}

package() {
  cd "${_plug}"
  python -m installer --destdir="${pkgdir}" dist/*.whl

  install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}