void-packages/srcpkgs/python3-regex/template
2021-08-12 09:12:31 -03:00

25 lines
677 B
Bash

# Template file for 'python3-regex'
pkgname=python3-regex
version=2021.8.3
revision=1
wrksrc="regex-${version}"
build_style=python3-module
hostmakedepends="python3-devel python3-setuptools"
makedepends="python3-devel"
short_desc="Alternative regular expression module (Python3)"
maintainer="skmpz <dem.procopiou@gmail.com>"
license="CNRI-Python, Apache-2.0"
homepage="https://pypi.org/project/regex/"
distfiles="${PYPI_SITE}/r/regex/regex-${version}.tar.gz"
checksum=8935937dad2c9b369c3d932b0edbc52a62647c2afb2fafc0c280f14a8bf56a6a
do_check() {
(cd build/lib* && python3 -m unittest regex/test_regex.py)
}
post_install() {
local i
for i in docs/*.* ; do
vdoc $i
done
}