blob: b43567d84047e78dd5883f0b4f34b468daf05763 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-qt5
_pkgname=PyQt5
pkgver=5.9.1
pkgrel=0
pkgdesc="A set of Python 3 bindings for the Qt toolkit"
url="http://riverbankcomputing.co.uk/software/pyqt/intro"
arch="all"
license="GPL2+"
depends="py3-sip"
makedepends="python3-dev py-dbus-dev py3-sip-dev
qt5-qtbase-dev libx11-dev qt5-qtsvg-dev qt5-websockets-dev"
source="https://sourceforge.net/projects/pyqt/files/$_pkgname/PyQt-$pkgver/${_pkgname}_gpl-$pkgver.zip"
builddir="${srcdir}/${_pkgname}_gpl-${pkgver}"
prepare() {
default_prepare
cd "$builddir"
sed -i '/target_config.dbus_inc_dirs = \[\]/d' configure.py
}
build() {
cd "$builddir"
python3 configure.py \
--confirm-license \
--qmake /usr/lib/qt5/bin/qmake \
-v /usr/share/sip \
--qsci-api
find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
make
}
check() {
cd "$builddir"
make check
}
package(){
cd "$builddir"
make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
}
sha512sums="e33a7856b73cb02c5ac307729abcbffdb4badf5ec4bfccd02cf70786c9f9639b154968931b35d75e426953dec024be3472297ec6a1efb26a7e8f79f26e9f89d7 PyQt5_gpl-5.9.1.zip"
|