blob: 9d7253ec607a3fb248308e3e41fc3e766e9ebed2 (
plain)
1 # Description: PyQt-builder is the PEP 517 compliant build system for PyQt
2 # URL: https://pypi.org/project/PyQt-builder/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-pyqt-builder
7 version=1.2.0
8 release=1
9 source=(https://pypi.io/packages/source/P/PyQt-builder/PyQt-builder-$version.tar.gz)
10
11 build() {
12 cd PyQt-builder-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|