mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
24 lines
761 B
Text
24 lines
761 B
Text
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=py3-regex
|
|
pkgver=2020.6.8
|
|
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="4af9f48a56c589ed33d74b701d57c92dc52b8d4dabfdbbdf08d909a69b02c3027478a40cf29426ef2e650f1ad7b29e5a3dd082e5b24187510d5f024cf608e451 regex-2020.6.8.tar.gz"
|