blob: b2655268afed2b778d19d72a0a4cdf42ac7912ef (
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
|
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
_plug=havsfunc
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=33.128.gc218a82
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-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-neo_f3kdb-git'
'vapoursynth-plugin-hqdn3d-git'
'vapoursynth-plugin-knlmeanscl-git'
'vapoursynth-plugin-misc-git'
'vapoursynth-plugin-mvtools'
'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-pip'
'python-wheel'
)
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}"
pip wheel --no-deps . -w dist
}
package() {
cd "${_plug}"
pip install -I -U --root "${pkgdir}" --no-warn-script-location --no-deps dist/*.whl
install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|