blob: 5d4262aa34ca0acf6b62e0edbd482b1484f0f06a (
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
|
# Maintainer: Nocifer <apmichalopoulos at gmail dot com>
pkgname='vapoursynth-preview'
pkgver='0.10.0'
pkgrel='1'
pkgdesc='Previewer for VapourSynth scripts'
arch=('x86_64')
url='https://github.com/Jaded-Encoding-Thaumaturgy/vs-preview'
license=('Apache-2.0')
depends=('python-matplotlib' 'python-qdarkstyle' 'python-pyqt6' 'python-pyqt6-sip' 'python-pyaml' 'python-requests-toolbelt' 'vapoursynth>=R65' 'vapoursynth-plugin-vsengine-git' 'vapoursynth-plugin-vstools-git')
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
source=("https://github.com/Jaded-Encoding-Thaumaturgy/vs-preview/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('0294ec00d77efbe50a619198d84a7b90d68fd895c600481fc79a86200061a909')
build() {
cd vs-preview-${pkgver}
python -m build --wheel --no-isolation
}
package() {
cd vs-preview-${pkgver}
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|