blob: bd61d9b4c951a6607a12b9e8972f8535bbfacbba (
plain)
1 # Description: An intrinsic PEG Parser-Interpreter for Python
2 # URL: https://fdik.org/pyPEG/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-build python3-installer
5
6 name=python3-pypeg2
7 version=2.15.2
8 release=2
9 source=(https://pypi.python.org/packages/source/p/pyPEG2/pyPEG2-$version.tar.gz)
10
11 build() {
12 cd pyPEG2-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|