mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
pkgname=py3-img2pdf
|
|
pkgver=0.5.1
|
|
pkgrel=1
|
|
pkgdesc="Convert images to PDF via direct JPEG inclusion"
|
|
url="https://gitlab.mister-muffin.de/josch/img2pdf"
|
|
arch="noarch"
|
|
license="LGPL-3.0-or-later"
|
|
depends="python3 py3-pillow py3-pikepdf"
|
|
makedepends="py3-setuptools qpdf-dev libxml2-dev libxslt-dev py3-wheel"
|
|
checkdepends="py3-lxml python3-dev"
|
|
# no tests in pypi tarball
|
|
subpackages="$pkgname-pyc"
|
|
source="https://pypi.python.org/packages/source/i/img2pdf/img2pdf-$pkgver.tar.gz"
|
|
builddir="$srcdir/img2pdf-$pkgver"
|
|
|
|
replaces=py-img2pdf # Backwards compatibility
|
|
provides=py-img2pdf=$pkgver-r$pkgrel # Backwards compatibility
|
|
|
|
prepare() {
|
|
default_prepare
|
|
# remove interpreter line from libraries
|
|
sed -i '/#!\//d' src/*.py
|
|
}
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
e17a920929f6ab08f501b205c38f9cf2fd5a6bd8d41ac4819a5d7463a3cfbeb5376cd5bbee36ab303248610f1d5c8a71a38ff85b14be564e2f39c6eb537ffcaf img2pdf-0.5.1.tar.gz
|
|
"
|