blob: eb99f9e7d0f8eae0a9f2d58117524d3594eb6a11 (
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
|
# Maintainer: Lex Black <autumn-wind@web.de>
pkgname=papermerge-core
pkgver=3.2
pkgrel=1
pkgdesc="Open Source Document Management System for Digital Archives (server)"
arch=(any)
url="https://github.com/papermerge/papermerge-core"
license=(Apache)
depends=(img2pdf
python-celery
python-configula
python-django-filter
python-django-celery-results
python-django-dynamic-preferences
python-django-modelcluster
python-django-rest-knox
python-django-taggit
python-dj-config-url
python-dj-database-url
python-fastapi
python-httpx
python-jose
python-lxml
python-magic
python-mysqlclient
python-ocrmypdf-papermerge
python-passlib
python-pdf2image
python-persisting-theory
python-psycopg2
python-python-multipart
python-redis
python-salinic
python-uritemplate
python-websockets
python-xapian
python-yaml
uvicorn
uwsgi-plugin-python)
makedepends=(python-build python-installer python-wheel python-poetry-core python-setuptools)
source=(${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz)
sha256sums=('3036de68cacc28ace83ef82c376ba0cf2ae081a2f235b9a97345ad66bf45d8f9')
build() {
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|