blob: cfbc1fccf3c8edd5e671ff469cdd13e2e10a4a19 (
plain)
1 # Description: Self-service finite-state machines for the programmer on the go.
2 # URL: https://pypi.python.org/pypi/automat
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-attrs python3-m2r python3-setuptools-scm python3-pip
5
6 name=python3-automat
7 _name=python3-Automat
8 version=20.2.0
9 release=1
10 source=(https://files.pythonhosted.org/packages/source/${_name:8:1}/${_name#*-}/${_name#*-}-$version.tar.gz)
11
12 build() {
13 cd ${_name#*-}-$version
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
16
17 mv $PKG/usr/bin/automat-visualize{,3}
18 }
|