blob: 5492b3a2d76dd2ed82c2de0f8f521b1b76e722d8 (
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
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Stephan Springer <buzo+arch@Lini.de>
# Contributor: inemum (https://gitlab.com/inemum)
# Contributor: graysky <graysky AT archlinux DOT us>
# Contributor: Fredrick Brennan <copypaste@kittens.ph>
# based on https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/sip
pkgbase='python-sip-pyqt4'
pkgname=('python-sip-pyqt4' 'python2-sip-pyqt4')
pkgver=4.19.25
pkgrel=2
arch=('x86_64')
url='https://www.riverbankcomputing.com/software/sip/intro'
license=('custom:"sip"')
makedepends=('python' 'python2')
source=("https://www.riverbankcomputing.com/static/Downloads/sip/$pkgver/sip-$pkgver.tar.gz"
'0001-Fix-compilation-against-Python-3.11.patch')
sha256sums=('b39d93e937647807bac23579edbff25fe46d16213f708370072574ab1f1b4211'
'56ebacabe7f7fade875256ef19f835dc8ecc6bec080802403669352128059fbd')
prepare() {
mkdir -p build-pyqt4{,-py2}
cd "$srcdir"/sip-$pkgver
patch --strip=1 --input=../0001-Fix-compilation-against-Python-3.11.patch
}
build() {
cd "$srcdir"/build-pyqt4
python ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS" --sip-module PyQt4.sip --no-tools
make
cd "$srcdir"/build-pyqt4-py2
python2 ../sip-$pkgver/configure.py CFLAGS="$CFLAGS" LFLAGS="$LDFLAGS" --sip-module PyQt4.sip --no-tools
make
}
package_python-sip-pyqt4() {
pkgdesc="Python 3.x SIP bindings for C and C++ libraries (PyQt4 version)"
depends=('python')
cd build-pyqt4
make DESTDIR="$pkgdir" install
install -Dm644 ../sip-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
package_python2-sip-pyqt4() {
pkgdesc="Python 2.x SIP bindings for C and C++ libraries (PyQt4 version)"
depends=('python2')
cd build-pyqt4-py2
make DESTDIR="$pkgdir" install
install -Dm644 ../sip-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
|