blob: b4733e95ac6c1883e2645375047dd0ec0b28d72a (
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
|
# Description: Connecteur python pour qt4
# URL: http://www.riverbankcomputing.co.uk/software/pyqt/intro
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: sip, qscintilla, qt, phonon
name=pyqt
version=4.7.7
release=2
source=(http://www.riverbankcomputing.com/static/Downloads/PyQt4/PyQt-x11-gpl-$version.tar.gz
fix-kdebindings-4.5.2.patch)
build() {
cd PyQt-x11-gpl-$version
patch -Np0 -i ../fix-kdebindings-4.5.2.patch
echo yes | python configure.py -b /usr/bin \
-d /usr/lib/python2.6/site-packages \
-v /usr/share/sip
make
make DESTDIR=$PKG install
}
|