blob: 734c00bfa96e854d9cf30862ecea2ca58b58d056 (
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
|
# Maintainer: TheFeelTrain <the@feeltra.in>
pkgname=python-vspackrgb
_origpkgname=vspackrgb
pkgver=1.4.0
pkgrel=1
pkgdesc="RGB packing for VapourSynth frames"
arch=("x86_64")
url='https://github.com/Jaded-Encoding-Thaumaturgy/vs-view'
license=("MIT")
depends=(
"python-hatch-cython-varde-git"
)
makedepends=(
"git"
"python-build"
"python-installer"
"python-wheel"
"python-setuptools"
"python-hatchling"
"python-versioningit"
"python-hatch-sbom"
)
source=("${pkgname}::git+${url}.git#tag=${_origpkgname}/v${pkgver}")
sha256sums=('37f379fe9e3c01a3746eb9919f798a605c80ed426b38fe47c8b488a2e45abd46')
prepare() {
cd "${pkgname}/src/${_origpkgname}" || exit
sed -i 's|hatch-cython @ git+https://github.com/Varde-s-Forks/hatch-cython.git|hatch-cython|' pyproject.toml
sed -i '/"setuptools-git-versioning"/d' pyproject.toml
sed -i "s/dynamic = \[\"version\"\]/version = \"$pkgver\"/g" pyproject.toml
sed -i '/\[tool.setuptools-git-versioning\]/,/]/d' pyproject.toml
}
build() {
cd "${pkgname}/src/${_origpkgname}" || exit
rm -f dist/*.whl
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}/src/${_origpkgname}" || exit
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|