blob: b0f83be7e0224d819bfd1e4dbbbc9eafd62f3471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# $Id$
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
pkgbase=qscintilla
pkgname=('qscintilla' 'python2-qscintilla')
pkgver=2.5.1
pkgrel=3
license=('GPL')
arch=('i686' 'x86_64')
url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
makedepends=('python2-pyqt')
source=("http://riverbankcomputing.com/static/Downloads/QScintilla2/QScintilla-gpl-${pkgver}.tar.gz"
'configure.py-objdir-support.diff')
md5sums=('dd7edef5ff674d307057a3c12dbd8fce'
'8cf9c06252e2f11ab00e62848e322fd3')
build() {
cd "${srcdir}/QScintilla-gpl-${pkgver}"
patch -Np1 -i "${srcdir}/configure.py-objdir-support.diff"
cd Qt4
qmake qscintilla.pro
make
cd ../designer-Qt4
qmake designer.pro INCLUDEPATH+=../Qt4 QMAKE_LIBDIR+=../Qt4
make
cd ../
cp -rf Python Python2
cd Python
python configure.py -n ../Qt4/ -o ../Qt4 -c -p 4
make
cd ../Python2
python2 configure.py -n ../Qt4/ -o ../Qt4 -c -p 4
make
}
package_qscintilla() {
pkgdesc="A port to Qt4 of Neil Hodgson's Scintilla C++ editor class"
depends=('qt')
cd "${srcdir}/QScintilla-gpl-${pkgver}/Qt4"
make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
cd "${srcdir}/QScintilla-gpl-${pkgver}/designer-Qt4"
make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
}
package_python2-qscintilla() {
pkgdesc="Python 2 bindings for QScintilla2"
depends=('pyqt' 'qscintilla')
cd "${srcdir}/QScintilla-gpl-${pkgver}/Python2"
make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
}
|