PKGBUILDs/extra/kdebindings-python/PKGBUILD

78 lines
2.2 KiB
Bash
Raw Normal View History

2012-03-17 19:29:40 +00:00
# $Id: PKGBUILD 153599 2012-03-16 14:50:09Z andrea $
2011-10-20 04:57:11 +00:00
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
2011-12-09 15:56:54 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2011-10-20 04:57:11 +00:00
# - pykde sip patch for arm
2012-03-17 19:29:40 +00:00
pkgbase=kdebindings-python
pkgname=('kdebindings-python'
'kdebindings-python2')
2012-08-07 16:05:56 +00:00
pkgver=4.9.0
pkgrel=1
url='https://projects.kde.org/projects/kde/kdebindings/pykde4'
2011-10-20 04:57:11 +00:00
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kdebindings')
2012-06-30 18:51:38 +00:00
makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt'
2012-08-07 16:05:56 +00:00
'pyqt' 'qscintilla' 'python2-sip' 'python-sip')
2012-03-08 13:52:58 +00:00
source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz"
2011-10-20 04:58:27 +00:00
"pykde4-4.4.4-arm-sip.patch")
2012-08-07 16:05:56 +00:00
sha1sums=('eb51fcadd14a184895195be822e4ed704e74d3ed'
2011-10-20 04:58:27 +00:00
'20d37a8b127eebffc4556352168786036969ee78')
2011-10-20 04:57:11 +00:00
build() {
2012-03-17 19:29:40 +00:00
export PYTHONDONTWRITEBYTECODE="TRUE"
2011-10-20 04:57:11 +00:00
cd "${srcdir}/pykde4-${pkgver}"
2011-11-01 23:37:05 +00:00
patch -Np3 -i "${srcdir}/pykde4-4.4.4-arm-sip.patch"
2011-10-20 04:57:11 +00:00
cd "${srcdir}"
mkdir build
cd build
2012-03-17 19:29:40 +00:00
cmake ../pykde4-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
2012-06-30 18:51:38 +00:00
-DPYTHON_EXECUTABLE=/usr/bin/python \
2012-03-17 19:29:40 +00:00
-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
make
cd ..
mkdir build-python2
cd build-python2
2011-10-20 04:57:11 +00:00
cmake ../pykde4-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPYTHON_EXECUTABLE=/usr/bin/python2
make
}
2012-03-17 19:29:40 +00:00
package_kdebindings-python() {
pkgdesc="A set of Python 3.x bindings for KDE"
depends=('kdepim-runtime' 'pyqt' 'qscintilla')
2011-10-20 04:57:11 +00:00
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
2012-03-17 19:29:40 +00:00
}
package_kdebindings-python2() {
pkgdesc="A set of Python 2.x bindings for KDE"
depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
conflicts=('kdebindings-python<4.8.1-2')
cd "${srcdir}"/build-python2
make DESTDIR="${pkgdir}" install
# Fix conflicts
rm "${pkgdir}"/usr/bin/pykdeuic4
ln -sf /usr/lib/python2.7/site-packages/PyQt4/uic/pykdeuic4.py \
"${pkgdir}"/usr/bin/python2-pykdeuic4
mv "${pkgdir}"/usr/share/apps/pykde4/examples \
"${pkgdir}"/usr/share/apps/pykde4/python2-examples
mv "${pkgdir}"/usr/share/sip/PyKDE4 \
"${pkgdir}"/usr/share/sip/python2-PyKDE4
2011-10-20 04:57:11 +00:00
# Use the python2 executable
find "${pkgdir}" -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|'
}