summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 27c0dcbb3312f9df10ad9c0a682c9aba6e6eec0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=python-stateutil
pkgver=1.4.0
pkgrel=1
pkgdesc="A collection of state machine utilities"
arch=(any)
url="https://bitbucket.org/daycoder/stateutil"
license=('custom:PSF')
makedepends=('python-setuptools')
depends=('python')
source=("https://pypi.io/packages/source/s/stateutil/stateutil-$pkgver.tar.gz")
sha512sums=('SKIP')

check() {
  # Not included in release tarball
  cd stateutil-$pkgver
  # python test_stateutil.py
}

package() {
  cd stateutil-$pkgver
  python setup.py install --root="$pkgdir/" --optimize=1
}