blob: 6e8456581f5b35fb286a58e46a47acea7c3acd1b (
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
|
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=python-skia-pathops
_pkgname=${pkgname#python-}
pkgver=0.8.0.post2
pkgrel=1
pkgdesc='Python bindings for the Skia library’s Path Ops (wheel)'
arch=(x86_64)
url="https://github.com/fonttools/$_pkgname"
license=(BSD-3-Clause)
depends=(python)
makedepends=(python-pip)
options=(!strip)
_py=cp312
_wheel="${_pkgname/-/_}-$pkgver-$_py-$_py-manylinux_2_17_$CARCH.manylinux2014_$CARCH.whl"
source=("https://files.pythonhosted.org/packages/$_py/${_pkgname::1}/$_pkgname/$_wheel")
sha256sums=('89f82f2273208f72403da8dc7457d64fbd3f7d8f1f7f54cb8483eeda00747933')
# If anybody wants to mess around with the Chromium tree and figure out how to
# build skia from source on Arch I'm open to patches, but even after mucking
# around with ninja and python2 and various patched build toolchains I have
# come up short of a way to build this against Arch packages as dependencies.
# Drop a comment on the AUR page if you have ideas.
package() {
export PIP_CONFIG_FILE=/dev/null
pip install --isolated --root="$pkgdir" --ignore-installed --no-deps $_wheel
python -O -m compileall "$pkgdir"
}
|