mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 02:41:17 +02:00
29 lines
958 B
Plaintext
29 lines
958 B
Plaintext
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
# Maintainer:
|
|
pkgname=py-pdfkit
|
|
_pkgname=pdfkit
|
|
pkgver=0.5.0
|
|
pkgrel=1
|
|
pkgdesc="Python wrapper to convert HTML to PDF using the WebKit rendering engine"
|
|
url="https://github.com/JazzCore/python-pdfkit"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="wkhtmltopdf"
|
|
makedepends="py-setuptools"
|
|
source="$pkgname-$pkgver.zip::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.zip"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python2 setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
md5sums="5cbe42c43d463f0794272a01e37a553f py-pdfkit-0.5.0.zip"
|
|
sha256sums="6e176cf460d8f8996d4c316aef1189e1c1c134d28d47a1e5e783e250ee3335dc py-pdfkit-0.5.0.zip"
|
|
sha512sums="7d310d36503305bf71065b9b96bb313cb21f40ad7c347554b6f7a82e3d7ee8a7e3122ce54a522fbbacb5c50f0ddb72c9827bc0b38aa1ebea891e5c91b2668841 py-pdfkit-0.5.0.zip"
|