summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b3b2fa80b2601c1aac34a0401a1c47c2319eba2d (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
# Contributor: Marcell Meszaros < marcell.meszaros AT runbox.eu >
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG

_distname=xmlformatter
pkgname="python-${_distname}"
pkgver=0.2.6
pkgrel=1
pkgdesc='CLI utility and Python library for formatting XML documents'
arch=('any')
url="https://pypi.org/project/${_distname}"
_repourl="https://github.com/pamoller/${_distname}"
license=('MIT')
depends=('python')
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
checkdepends=('python-pytest')
provides=("${_distname}=${pkgver}")
conflicts=("${_distname}")
source=("${_distname}-${pkgver}.tar.gz::${_repourl}/archive/refs/tags/v${pkgver}.tar.gz")
b2sums=('1403e3b320551b130d580964c378900bc91869b4b2209815eb51ce073a2fe818337c10f65bbb30efe2ee1a431f885168b4aed1462846eed34599ffbd84edbb69')

build() {
  cd "${_distname}-$pkgver"
  python -m build --wheel --no-isolation
}

check() {
  cd "${_distname}-$pkgver/test"
  python test_xmlformatter.py
}

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

  install -Dm644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}/"
  local _site="$(python -c 'import site; print(site.getsitepackages()[0])')"
  install -d "${pkgdir}/usr/share/licenses/${pkgname}/"
  ln -s \
    "${_site}/${_distname}-${pkgver}.dist-info/LICENSE.txt" \
    "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}