Date: Monday, April 10, 2023 @ 15:05:52
Author: arojas
Revision: 473807
archrelease: copy trunk to testing-x86_64
Added:
pyqt6-3d/repos/testing-x86_64/
pyqt6-3d/repos/testing-x86_64/PKGBUILD
(from rev 473806, pyqt6-3d/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: pyqt6-3d/repos/testing-x86_64/PKGBUILD (from rev 473806,
pyqt6-3d/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-04-10 15:05:52 UTC (rev 473807)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgbase=pyqt6-3d
+pkgname=(python-pyqt6-3d)
+pkgver=6.5.0
+pkgrel=1
+pkgdesc='Python bindings for Qt3D'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqt3d/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-3d python-pyqt6)
+makedepends=(sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-3D/PyQt6_3D-$pkgver.tar.gz)
+sha256sums=('f8ef3e2965a518367eb4cc693fd9f23698fcbeb909c7dcb7269737b8d877f68b')
+
+build() {
+ cd PyQt6_3D-$pkgver
+ sip-build \
+ --no-make \
+ --qmake=/usr/bin/qmake6
+ cd build
+ make
+}
+
+package_python-pyqt6-3d(){
+ cd PyQt6_3D-$pkgver/build
+ make INSTALL_ROOT="$pkgdir" install
+}