summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d33520ed309764b60fd438bb2d7a1c71772b39ed (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
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>

# Upstream test suite has a circular dependency (it uses fontparts which in
# turn depends on this library) and thus cannot be run by default without
# blocking installation until first building without tests.
BUILDENV+=(!check)

_pyname=fontPens
pkgname=python-${_pyname,,}
pkgver=0.2.4
pkgrel=3
pkgdesc='A collection of classes implementing the pen protocol for manipulating glyphs.'
arch=(any)
url='https://github.com/robotools/$_pyname'
license=(BSD)
depends=(python-fonttools)
makedepends=(python-setuptools)
checkdepends=(python-fontparts
              python-pytest)
_archive="$_pyname-$pkgver"
source=("https://files.pythonhosted.org/packages/source/${_pyname::1}/$_pyname/$_archive.zip")
sha256sums=('a6d9a14573b3450f3313d69523f9006028c21fc7aef5d35333b87aab7f2b41fd')

build() {
	cd "$_archive"
	python setup.py build
}

check() {
	cd "$_archive"
	PYTHONPATH=Lib pytest Lib
}

package() {
	cd "$_archive"
	python setup.py install --root="$pkgdir" --optimize=1 --skip-build
	install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE.txt
}