Date: Wednesday, February 24, 2021 @ 21:35:15 Author: arojas Revision: 408785
Split from PyQt5 Added: pyqt5-networkauth/ pyqt5-networkauth/trunk/ pyqt5-networkauth/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: pyqt5-networkauth/trunk/PKGBUILD =================================================================== --- pyqt5-networkauth/trunk/PKGBUILD (rev 0) +++ pyqt5-networkauth/trunk/PKGBUILD 2021-02-24 21:35:15 UTC (rev 408785) @@ -0,0 +1,30 @@ +# Maintainer: Antonio Rojas <[email protected]> +# Maintainer: Felix Yan <[email protected]> + +pkgbase=pyqt5-networkauth +pkgname=(python-pyqt5-networkauth) +pkgver=5.15.3 +pkgrel=1 +pkgdesc="Python bindings for QtNetworkAuth" +arch=(x86_64) +url="https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro" +license=(GPL3) +groups=(pyqt5) +depends=(qt5-networkauth python-pyqt5) +makedepends=(sip pyqt-builder) +source=("https://pypi.python.org/packages/source/P/PyQtNetworkAuth/PyQtNetworkAuth-$pkgver.tar.gz") +sha256sums=('2590eae76d4b87ceb9f0d857a5631e13dd14f7fdab2b5e696df61f77e4e3fd82') + +build() { + cd PyQtNetworkAuth-$pkgver + sip-build \ + --no-make \ + --api-dir /usr/share/qt/qsci/api/python + cd build + make +} + +package_python-pyqt5-networkauth(){ + cd PyQtNetworkAuth-$pkgver/build + make INSTALL_ROOT="$pkgdir" install +}
