mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
extra/kdebindings-python to 4.8.1-3
This commit is contained in:
parent
fd25b40260
commit
4c36350ba5
1 changed files with 42 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: PKGBUILD 147779 2012-01-28 10:32:44Z andrea $
|
||||
# $Id: PKGBUILD 153599 2012-03-16 14:50:09Z andrea $
|
||||
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
|
@ -6,27 +6,38 @@
|
|||
|
||||
plugrel=1
|
||||
|
||||
pkgname=kdebindings-python
|
||||
pkgbase=kdebindings-python
|
||||
pkgname=('kdebindings-python'
|
||||
'kdebindings-python2')
|
||||
pkgver=4.8.1
|
||||
pkgrel=1
|
||||
pkgdesc="KDE bindings for Python"
|
||||
url="http://kde.org/"
|
||||
pkgrel=3
|
||||
url='http://kde.org/'
|
||||
arch=('i686' 'x86_64')
|
||||
license=('GPL' 'LGPL' 'FDL')
|
||||
groups=('kdebindings')
|
||||
depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla')
|
||||
makedepends=('cmake' 'automoc4' 'boost')
|
||||
makedepends=('cmake' 'automoc4' 'boost' 'kdepim-runtime' 'python2-pyqt' 'qscintilla')
|
||||
source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.xz"
|
||||
"pykde4-4.4.4-arm-sip.patch")
|
||||
sha1sums=('b9ef35269d2e08578ba20d01822dbdbed72bffb8'
|
||||
'20d37a8b127eebffc4556352168786036969ee78')
|
||||
|
||||
build() {
|
||||
export PYTHONDONTWRITEBYTECODE="TRUE"
|
||||
|
||||
cd "${srcdir}/pykde4-${pkgver}"
|
||||
patch -Np3 -i "${srcdir}/pykde4-4.4.4-arm-sip.patch"
|
||||
cd "${srcdir}"
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../pykde4-${pkgver} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DPYTHON_LIBRARY=/usr/lib/libpython3.2mu.so.1.0
|
||||
make
|
||||
cd ..
|
||||
|
||||
mkdir build-python2
|
||||
cd build-python2
|
||||
cmake ../pykde4-${pkgver} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
|
@ -34,9 +45,32 @@ build() {
|
|||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
package_kdebindings-python() {
|
||||
pkgdesc="A set of Python 3.x bindings for KDE"
|
||||
depends=('kdepim-runtime' 'pyqt' 'qscintilla')
|
||||
|
||||
cd "${srcdir}"/build
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
# Use the python2 executable
|
||||
find "${pkgdir}" -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|'
|
||||
|
|
Loading…
Reference in a new issue