mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-08 07:11:37 +02:00
25 lines
748 B
Plaintext
25 lines
748 B
Plaintext
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=py3-regex
|
|
pkgver=2020.1.8
|
|
pkgrel=0
|
|
pkgdesc="A more featureful implementation of the 're' module"
|
|
url="https://bitbucket.org/mrabarnett/mrab-regex"
|
|
arch="all"
|
|
license="CNRI-Python"
|
|
depends="python3"
|
|
makedepends="python3-dev"
|
|
options="!check" # no tests
|
|
source="https://files.pythonhosted.org/packages/source/r/regex/regex-$pkgver.tar.gz"
|
|
builddir="$srcdir/regex-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="d8cd574693bc2d95271135fadc2ffd4c9a4c0882fe2c173538095575271950a7ac164a40dbd2a9fb6a4d8919a68ee6d17bc92d1e019263b0e1374a8aa6898063 regex-2020.1.8.tar.gz"
|