blob: 0600b0ec34c5161cc7e65c5f3c9c4bc6889bc91f (
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
53
54
55
56
57
58
59
60
61
|
# Maintainer: Ianis Vasilev <ianis@ivasilev.net>
pkgname=dpsprep-git
_pkgbasename="${pkgname%-git}"
pkgver=2.5.3.r172.279974a
pkgrel=1.314
pkgdesc='A DjVu to PDF converter with a focus on small output size and the ability to preserve document outlines and text layers'
url='https://github.com/kcroker/dpsprep'
arch=('any')
license=('GPL-3.0-only')
provides=("$_pkgbasename")
conflicts=("$_pkgbasename")
checkdepends=(ruff mypy python-types-pillow python-types-fpdf2 python-pytest)
makedepends=(git python-uv-build python-build python-installer python-wheel)
depends=(python python-djvulibre-python
python-click python-loguru python-pillow
python-fpdf2 python-pdfrw)
optdepends=(
'ocrmypdf: Optional OCR and advanced PDF optimization'
'jbig2enc: Advanced compression of bitonal images'
)
source=("git+https://github.com/kcroker/dpsprep.git")
md5sums=('SKIP')
_fullsrcdir() {
echo "$srcdir/$_pkgbasename"
}
# Based on https://aur.archlinux.org/packages/dpsprep-git#comment-1031722
pkgver() {
cd "$(_fullsrcdir)"
_ver="$(git describe --tags | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' | tr '-' '+')"
_rev="$(git rev-list --count HEAD)"
_hash="$(git rev-parse --short HEAD)"
if [ -z "${_ver}" ]; then
error "Version could not be determined."
return 1
else
printf '%s' "${_ver}.r${_rev}.${_hash}"
fi
}
check() {
cd "$(_fullsrcdir)"
ruff check dpsprep
mypy --package dpsprep
pytest
}
build() {
cd "$(_fullsrcdir)"
python -m build --wheel --no-isolation
}
package() {
cd "$(_fullsrcdir)"
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m644 dpsprep.1 "$pkgdir/usr/share/man/man1/dpsprep.1"
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$_pkgbasename/LICENSE"
}
|