mirror of
https://codeberg.org/privacy1st/py-regex-replace
synced 2024-12-22 02:26:06 +01:00
add PKGBUILD
This commit is contained in:
parent
d2277a98b3
commit
987737d0f7
3
.gitignore
vendored
3
.gitignore
vendored
@ -2,4 +2,7 @@
|
||||
/build/
|
||||
/dist/
|
||||
|
||||
/archlinux/py-regex-replace/
|
||||
/archlinux/py-regex-replace-*-any.pkg.tar.zst
|
||||
|
||||
.idea/
|
||||
|
@ -1,5 +1,7 @@
|
||||
# py-regex-replace
|
||||
|
||||
perform regex-replacement on stdin and output result to stdout
|
||||
|
||||
## Installation
|
||||
|
||||
```shell
|
||||
|
26
archlinux/PKGBUILD
Normal file
26
archlinux/PKGBUILD
Normal file
@ -0,0 +1,26 @@
|
||||
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue
Block a user