blob: b9116693e1aba18dcb94d82e33ed7ed161ff9ea5 (
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
60
61
62
63
64
65
66
67
68
69
70
|
# $Id: PKGBUILD 171721 2012-11-21 18:14:22Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgbase=kdesdk-kate
pkgname=('kdebase-katepart'
'kdebase-kwrite'
'kdesdk-kate')
pkgver=4.9.80
pkgrel=1
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
makedepends=('kdelibs ''cmake' 'automoc4' 'kdebindings-python2')
source=("http://download.kde.org/unstable/${pkgver}/src/kate-${pkgver}.tar.xz"
'pkgbuild-syntax-highlight.patch')
sha1sums=('8d4091c03312a75052b8a81a3c3676acef109a47'
'5b45d0df8f340105633eba9ef7c58086e6c2e750')
build() {
cd "${srcdir}"/kate-${pkgver}
patch -p1 -i "${srcdir}"/pkgbuild-syntax-highlight.patch
cd "${srcdir}"
mkdir build
cd build
cmake ../kate-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPYTHON_EXECUTABLE=/usr/bin/python2
make
}
package_kdebase-katepart() {
pkgdesc="A fast and feature-rich text editor component"
depends=('kdelibs')
url="http://kate-editor.org/about-katepart/"
install='kdebase-katepart.install'
cd "${srcdir}"/build/part
make DESTDIR="${pkgdir}" install
}
package_kdebase-kwrite() {
pkgdesc="Text Editor"
depends=('kdebase-runtime' 'kdebase-katepart')
groups=('kde' 'kdebase')
url="http://www.kde.org/applications/utilities/kwrite/"
install='kdebase-kwrite.install'
cd "${srcdir}"/build/kwrite
make DESTDIR="${pkgdir}" install
cd "${srcdir}"/build/doc/kwrite
make DESTDIR="${pkgdir}" install
}
package_kdesdk-kate() {
pkgdesc="Advanced Text Editor"
depends=('kdebase-runtime' 'kdebase-katepart' 'qjson')
groups=('kde' 'kdesdk')
url="http://www.kde.org/applications/utilities/kate/"
install='kdesdk-kate.install'
optdepends=('kdebase-konsole: open a terminal in Kate'
'kdebindings-python2: python bindings')
cd "${srcdir}"/build/kate
make DESTDIR="${pkgdir}" install
cd "${srcdir}"/build/doc/kate
make DESTDIR="${pkgdir}" install
}
|