blob: 38041264254c4ccc817add4dfc746116081c6b08 (
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
|
# Maintainer: Luc Khai Hai <lkh42t@gmail.com>
pkgname=python-sphinx-lint
_name=${pkgname#python-}
pkgver=1.0.0
pkgrel=1
pkgdesc='Check for stylistic and formal issues in .rst and .py files included in the documentation.'
arch=('any')
url=https://github.com/sphinx-contrib/sphinx-lint
license=('PSF')
depends=('python' 'python-regex'
# AUR
'python-polib')
makedepends=('python-build' 'python-hatch-vcs' 'python-hatchling' 'python-installer')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name//-/_}-${pkgver}.tar.gz")
sha256sums=('6eafdb44172ce526f405bf36c713eb246f1340ec2d667e7298e2487ed76decd2')
build() {
cd "${_name//-/_}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_name//-/_}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
# vi: sts=2 sw=2 et
|