28 lines
809 B
Bash
28 lines
809 B
Bash
# Template file for 'python-automat'
|
|
pkgname=python-automat
|
|
version=22.10.0
|
|
revision=2
|
|
build_style=python2-module
|
|
hostmakedepends="python-setuptools"
|
|
depends="python-setuptools python-attrs python-six"
|
|
short_desc="Finite-state machines in Python (Python2)"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/glyph/Automat"
|
|
distfiles="${PYPI_SITE}/A/Automat/Automat-${version}.tar.gz"
|
|
checksum=e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e
|
|
alternatives="automat:automat-visualize:/usr/bin/automat-visualize2"
|
|
make_check=no # python2
|
|
|
|
pre_build() {
|
|
sed -i setup.py \
|
|
-e '/print(/d' \
|
|
-e '/setup_requires=/,+3d' \
|
|
-e "s/use_scm_version=True/version='${version}'/"
|
|
}
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/usr/bin/automat-visualize{,2}
|
|
vlicense LICENSE
|
|
}
|