forked from ports/contrib
22 lines
653 B
Plaintext
22 lines
653 B
Plaintext
# Description: Self-service finite-state machines for the programmer on the go.
|
|
# URL: https://pypi.python.org/pypi/automat
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-attrs python3-m2r python3-setuptools-scm
|
|
|
|
name=python3-automat
|
|
_name=python3-Automat
|
|
version=22.10.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${_name:8:1}/${_name#*-}/${_name#*-}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${_name#*-}-$version
|
|
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
|
|
mv $PKG/usr/bin/automat-visualize{,3}
|
|
}
|