17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
# Description: PyQt-builder is the PEP 517 compliant build system for PyQt
|
|
# URL: https://pypi.org/project/PyQt-builder/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools-scm sip
|
|
|
|
name=python3-pyqt-builder
|
|
version=1.16.4
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/pyqt_builder/pyqt_builder-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pyqt_builder-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|