From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/python-qt/PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 extra/python-qt/PKGBUILD (limited to 'extra/python-qt') diff --git a/extra/python-qt/PKGBUILD b/extra/python-qt/PKGBUILD new file mode 100644 index 000000000..43a00111e --- /dev/null +++ b/extra/python-qt/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 110673 2011-02-21 12:42:56Z andrea $ +# Maintainer: Andrea Scarpino + +pkgname=python-qt +pkgver=4.8.3 +pkgrel=2 +arch=('i686' 'x86_64') +url="http://riverbankcomputing.co.uk/software/pyqt/intro" +license=('GPL') +pkgdesc="A set of Python 3 bindings for the Qt toolkit" +depends=('python2-qt' 'python-sip') +optdepends=('phonon: enable audio and video in PyQt applications' + 'qscintilla: QScintilla API' + 'qt-assistant-compat: add PyQt online help in Qt Assistant') +makedepends=('phonon' 'qt-assistant-compat') +source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz") +md5sums=('d54fd1c37a74864faf42709c8102f254') + +build() { + cd "${srcdir}/PyQt-x11-gpl-${pkgver}" + + python configure.py \ + --confirm-license \ + --qsci-api + + # Thanks Gerardo for the rpath fix + find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g' + + make +} + +package(){ + cd "${srcdir}/PyQt-x11-gpl-${pkgver}" + # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use DESTDIR + make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install + + # Provided by python2-qt package + rm ${pkgdir}/usr/bin/{pylupdate4,pyrcc4,pyuic4} + rm ${pkgdir}/usr/lib/qt/plugins/designer/libpythonplugin.so + rm ${pkgdir}/usr/share/qt/qsci/api/python/PyQt4.api +} -- cgit v1.2.3-54-g00ecf