diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 06:13:57 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 06:13:57 (GMT) |
commit | b172f79fadb565ecfbcec9508f9377d8618a4f4c (patch) | |
tree | bf8823b07e3313c3afa000a9b31e4f9a735cb818 /abs/extra/pyqt/PKGBUILD | |
parent | f9d54ab7c3853208484e304bc6cf40ab0f79d400 (diff) | |
parent | 5e7027c6194237ca1dc5fcbb3648483a970fb500 (diff) | |
download | linhes_pkgbuild-b172f79fadb565ecfbcec9508f9377d8618a4f4c.zip linhes_pkgbuild-b172f79fadb565ecfbcec9508f9377d8618a4f4c.tar.gz linhes_pkgbuild-b172f79fadb565ecfbcec9508f9377d8618a4f4c.tar.bz2 |
Merge branch 'HEAD' of ssh://cesman@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/extra/pyqt/PKGBUILD')
-rw-r--r-- | abs/extra/pyqt/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/abs/extra/pyqt/PKGBUILD b/abs/extra/pyqt/PKGBUILD new file mode 100644 index 0000000..f6645c7 --- /dev/null +++ b/abs/extra/pyqt/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 47994 2009-07-30 10:33:54Z pierre $ +# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org> +# Contributor: riai <riai@bigfoot.com> Ben <ben@benmazer.net> + +pkgname=pyqt +pkgver=4.6 +pkgrel=1 +pkgdesc="A set of Python bindings for the Qt toolkit." +arch=(i686 x86_64) +url="http://riverbankcomputing.co.uk/software/pyqt/intro" +depends=('sip>=4.8.2' 'qscintilla>=2.4.0' 'qt>=4.5.2' 'dbus-python' 'openssl') +license=('GPL') +provides=('pyqt4') +replaces=('pyqt4') +conflicts=('pyqt4') +source=(http://riverbankcomputing.com/static/Downloads/PyQt4/PyQt-x11-gpl-$pkgver.tar.gz) + +build() { + cd ${srcdir}/PyQt-x11-gpl-${pkgver} + + python configure.py --confirm-license -b /usr/bin \ + -d /usr/lib/python2.6/site-packages \ + -v /usr/share/sip + + # Thanks Gerardo for the rpath fix + find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g' + + make || return 1 + make DESTDIR=${pkgdir} install +} |