blob: 7813e8b0409fad54b06a60379e662d7c9448f02f (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=fontbakery
pkgver=0.13.2
pkgrel=1
pkgdesc='A command-line tool for checking the quality of font projects'
arch=(any)
url="https://github.com/googlefonts/$pkgname"
license=(Apache-2.0)
_pydeps=(axisregistry
beautifulsoup4
beziers
cmarkgfm
collidoscope
defcon
fonttools
fs # for fonttols[ufo]
gflanguages
glyphsets
lxml
opentype-sanitizer
protobuf
pyyaml
requests
rich
stringbrewer
toml
ufo2ft
unicodedata2 # for fonttools[unicode]
vharfbuzz)
depends=(dehinter
font-v
python
ttfautohint
ufolint)
depends+=("${_pydeps[@]/#/python-}")
makedepends=(python-{build,installer,wheel}
python-setuptools-scm)
_archive="$pkgname-$pkgver"
# source=("$url/archive/v$pkgver/$_archive.tar.gz")
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$_archive.tar.gz")
sha256sums=('ff0cab06849456374a20894adc7a03787437ca130f4ffd06d399655b30e8139d')
build() {
cd "$_archive"
python -m build -wn
}
package() {
cd "$_archive"
python -m installer -d "$pkgdir" dist/*.whl
}
|