1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 20:55:19 +03:00
aports/community/py3-regex/APKBUILD
2020-05-19 00:26:15 +01:00

24 lines
763 B
Text

# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-regex
pkgver=2020.5.14
pkgrel=0
pkgdesc="More featureful implementation of the 're' module"
url="https://bitbucket.org/mrabarnett/mrab-regex"
arch="all"
license="CNRI-Python"
depends="python3"
makedepends="python3-dev py3-setuptools"
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="e16c7cc45ceb4bb8fad620d8c5b69ff5a3a3dc97ee06836390bd85ad70821fc6694b374e59796fe208c1db42fe0f47cd4c2fb7a1b8609351ecb41f58e2b8b070 regex-2020.5.14.tar.gz"