py-regex-replace/archlinux/PKGBUILD

29 lines
776 B
Bash
Raw Normal View History

2022-06-23 15:19:17 +02:00
# Maintainer: Daniel Langbein <daniel@systemli.org>
2022-06-23 19:21:37 +02:00
# Python package guidelines: https://wiki.archlinux.org/title/Python_package_guidelines#Standards_based_(PEP_517)
2022-06-23 15:19:17 +02:00
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
2022-06-23 23:28:31 +02:00
makedepends+=(python-build python-installer python-wheel python-setuptools) # python -m build
2022-06-23 15:19:17 +02:00
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
}