summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f5959799eea54f43c37644ab544942d817105a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

pkgname=python-pyqt3d
pkgver=5.12
pkgrel=1
pkgdesc="Set of Python bindings for The Qt Company's Qt3D libraries"
arch=('x86_64')
url="https://www.riverbankcomputing.com/software/pyqt3d"
license=('GPL')
depends=('qt5-3d' 'python-pyqt5')
makedepends=('sip')
source=("https://www.riverbankcomputing.com/static/Downloads/PyQt3D/${pkgver}/PyQt3D_gpl-${pkgver}.tar.gz")
sha256sums=('a02069872439589080ce1bf3206dd16e328e6db2d8cb67020ae36a327682098a')

build() {
  cd "$srcdir"/PyQt3D_gpl-$pkgver
  python configure.py --no-sip-files --no-qsci-api --no-stubs
  make
}

package() {
  cd "$srcdir"/PyQt3D_gpl-$pkgver
#   mkdir -p "$pkgdir"/usr/lib/python3.7/site-packages/
  make install INSTALL_ROOT="${pkgdir}" -j1
}