summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 67a96d5e2be9cdf08898ba7773e85e0c5c051145 (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
# Maintainer: atomicfs <https://aur.archlinux.org/account/atomicfs>

pkgname=python-tika-client
pkgver=0.5.0
pkgrel=2
pkgdesc="A modern Python REST client for Apache Tika server"
arch=('any')
url="https://github.com/stumpylog/tika-client"
license=('MPL-2.0')
depends=(
  'python'
)
makedepends=(
  'git'
  'python-build'
  'python-installer'
  'python-hatchling'
  'python-editables'
  'python-pathspec'
)
checkdepends=(
  'python-pytest'
)
source=("${pkgname}::git+${url}#tag=${pkgver}")
sha256sums=('SKIP')

#check() {}
# Woudl require complex setup

build() {
  cd "${srcdir}/${pkgname}"
  python -m build --wheel --no-isolation
}

package() {
  cd "${srcdir}/${pkgname}"
  python -m installer --destdir="${pkgdir}" dist/*.whl
}