29 lines
809 B
Bash
29 lines
809 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=python-pyqt5-sip
|
|
pkgver=12.15.0
|
|
pkgrel=1
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
pkgdesc='The sip module support for PyQt5'
|
|
url='https://riverbankcomputing.com/software/pyqt/intro'
|
|
license=(GPL)
|
|
depends=(glibc
|
|
python)
|
|
makedepends=(python-build
|
|
python-installer
|
|
python-setuptools
|
|
python-wheel)
|
|
source=(https://pypi.python.org/packages/source/P/PyQt5-sip/PyQt5_sip-$pkgver.tar.gz)
|
|
sha256sums=('d23fdfcf363b5cedd9d39f8a9c5710e7d52804f5b08a58e91c638b36eafcb702')
|
|
|
|
build() {
|
|
cd PyQt5_sip-$pkgver
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
package() {
|
|
cd PyQt5_sip-$pkgver
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|