mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 12:36:40 +02:00
28 lines
758 B
Text
28 lines
758 B
Text
# Maintainer: Michał Adamski <michal@ert.pl>
|
|
pkgname=py3-fpdf
|
|
pkgver=1.7.2
|
|
pkgrel=5
|
|
pkgdesc="Simple PDF generation for Python"
|
|
url="https://pyfpdf.readthedocs.io/en/latest/"
|
|
arch="noarch"
|
|
license="LGPL-3.0-or-later"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/f/fpdf/fpdf-$pkgver.tar.gz"
|
|
builddir="$srcdir/fpdf-$pkgver"
|
|
options="!check" # no tests provided
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
3a4b4f363f36f821b5626b656b0ad199379aca171c7dd2a019e94f3bc39570b5624111d9fb3f8e0a7662e8f31184158e67263a475101378e84c200ebbbbcdd63 fpdf-1.7.2.tar.gz
|
|
"
|