Date: Monday, June 1, 2020 @ 11:23:34 Author: arojas Revision: 388011
archrelease: copy trunk to testing-x86_64 Added: pyqt3d/repos/testing-x86_64/ pyqt3d/repos/testing-x86_64/PKGBUILD (from rev 388010, pyqt3d/trunk/PKGBUILD) ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Copied: pyqt3d/repos/testing-x86_64/PKGBUILD (from rev 388010, pyqt3d/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-06-01 11:23:34 UTC (rev 388011) @@ -0,0 +1,30 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +pkgbase=pyqt3d +pkgname=(python-pyqt3d) +pkgver=5.15.0 +pkgrel=1 +pkgdesc="Python bindings for Qt3D" +arch=(x86_64) +url="https://www.riverbankcomputing.com/software/pyqt3d/intro" +license=(GPL3) +groups=(pyqt5) +depends=(qt5-3d python-pyqt5) +makedepends=(sip5 pyqt-builder) +source=("https://pypi.python.org/packages/source/P/PyQt3D/PyQt3D-$pkgver.tar.gz") +sha256sums=('cba03c6a8fea2d6a0e2ff0a54dcdb86ed6904fd462a9e6e58583badcf6a81afc') + +build() { + cd "$srcdir"/PyQt3D-$pkgver + sip-build \ + --no-make \ + --api-dir /usr/share/qt/qsci/api/python + cd build + make +} + +package_python-pyqt3d(){ + cd PyQt3D-$pkgver/build + make INSTALL_ROOT="$pkgdir" install -j1 +}