blob: 16a1dd8c0ae55446c8a63d445f99e2b402a824eb (
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
|
# $Id: PKGBUILD 153072 2012-03-12 09:03:04Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgbase=kdesdk-kate
pkgname=('kdebase-kwrite'
'kdesdk-kate')
pkgver=4.8.1
pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
license=('GPL' 'LGPL' 'FDL')
makedepends=('kdelibs ''cmake' 'automoc4')
source=("http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.xz"
'pkgbuild-syntax-highlight.patch')
sha1sums=('d5bd513cd2bfefc2d345547115d0cb0a9d3e6143'
'0a928253bd2077f0264d96a6c8823c69c47b6a8d')
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 \
-DBUILD_KTEXTEDITOR=OFF
make
}
package_kdebase-kwrite() {
pkgdesc="Text Editor"
depends=('kdebase-runtime')
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/part
make DESTDIR="${pkgdir}" install
cd "${srcdir}"/build/doc/kwrite
make DESTDIR="${pkgdir}" install
}
package_kdesdk-kate() {
pkgdesc="Advanced Text Editor"
depends=('kdebase-kwrite')
groups=('kde' 'kdesdk')
url="http://www.kde.org/applications/utilities/kate/"
install='kdesdk-kate.install'
optdepends=('kdebase-konsole: open a terminal in Kate')
cd "${srcdir}"/build/kate
make DESTDIR="${pkgdir}" install
cd "${srcdir}"/build/doc/kate
make DESTDIR="${pkgdir}" install
}
|