summaryrefslogtreecommitdiff
path: root/staging/kdebindings-python
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-31 23:14:48 +0000
committerroot <root@rshg054.dnsready.net>2011-10-31 23:14:48 +0000
commit560562e36a27da267f2f4f7989806790192888ef (patch)
treef2ce7f5442dd17943646b3844614c48750704018 /staging/kdebindings-python
parentf935ebf41c626e4832f86c5f3f7ed1cc35128f6b (diff)
Mon Oct 31 23:14:48 UTC 2011
Diffstat (limited to 'staging/kdebindings-python')
-rw-r--r--staging/kdebindings-python/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/staging/kdebindings-python/PKGBUILD b/staging/kdebindings-python/PKGBUILD
new file mode 100644
index 000000000..55174b915
--- /dev/null
+++ b/staging/kdebindings-python/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 141511 2011-10-31 03:33:59Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=kdebindings-python
+pkgver=4.7.3
+pkgrel=1
+pkgdesc="KDE bindings for Python"
+url="http://kde.org/"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://download.kde.org/stable/${pkgver}/src/pykde4-${pkgver}.tar.bz2")
+sha1sums=('16063793d39fdc9f5b9916cab49236103ce79da2')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../pykde4-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+
+ # Use the python2 executable
+ find "${pkgdir}" -name '*.py' | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|'
+}