blob: c9ddc846a331ef47c9bc7f4e89b1b126ff9c6443 (
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: python-attrs
5
6 name=python-Automat
7 version=0.6.0
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd ${name#*-}-$version
13 /usr/bin/python setup.py build
14 /usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
15 }
|