27 lines
696 B
Bash
27 lines
696 B
Bash
# Template file for 'python3-regex'
|
|
pkgname=python3-regex
|
|
version=2022.4.24
|
|
revision=1
|
|
wrksrc="regex-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-devel python3-setuptools"
|
|
makedepends="python3-devel"
|
|
depends="python3"
|
|
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=92183e9180c392371079262879c6532ccf55f808e6900df5d9f03c9ca8807255
|
|
|
|
do_check() {
|
|
(cd build/lib* && python3 -m unittest regex/test_regex.py)
|
|
}
|
|
|
|
post_install() {
|
|
local i
|
|
for i in docs/*.* ; do
|
|
vdoc $i
|
|
done
|
|
}
|