py-regex-replace/archlinux/PKGBUILD
2022-06-23 19:21:37 +02:00

29 lines
758 B
Bash

# Maintainer: Daniel Langbein <daniel@systemli.org>
# Python package guidelines: https://wiki.archlinux.org/title/Python_package_guidelines#Standards_based_(PEP_517)
pkgname="py-regex-replace"
pkgver=0.0.1
pkgrel=1
pkgdesc="perform regex-replacement on stdin and output result to stdout"
arch=('any')
url="https://git.privacy1st.de/langfingaz/py-regex-replace"
license=('CC0')
depends=(python)
makedepends=()
makedepends+=(git) # fetch git sources
makedepends+=(python-build python-installer python-wheel) # python -m build
source=("git+${url}.git")
sha256sums=('SKIP') # 'SKIP' git sources
build() {
cd "$pkgname"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
}