# Maintainer: Chau Duong _pkgname=mdformat-mkdocs pkgname="${_pkgname}-git" pkgver=v1.1.0.r0.fb0132a pkgrel=1 pkgdesc="mdformat plugin for MkDocs" arch=(any) url="https://github.com/KyleKing/mdformat-mkdocs" license=('MIT') depends=(mdformat) makedepends=( python-pip python-build python-wheel python-flit python-installer python-poetry ) source=("${_pkgname}::git+${url}.git") conflicts=("$_pkgname") provides=("$_pkgname") sha256sums=(SKIP) pkgver() { cd "$_pkgname" printf "%s" "$(git describe --long --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g')" } build() { cd "$_pkgname" python -m build --wheel --no-isolation } package() { cd "$_pkgname" python -m installer --destdir="$pkgdir" dist/*.whl }