blob: dd8e29ea26ffcb4067e7b31593f25683ed2e7ca5 (
plain) (
blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=kate
pkgver=18.08.1
pkgrel=0
pkgdesc="Advanced text editor with autocomplete, syntax highlighting, and more"
url="https://kate-editor.org/"
arch="all"
options="!check" # All tests require X11.
license="(LGPL-2.1-only OR LGPL-3.0-only) AND GPL-3.0+"
makedepends="$depends_dev cmake extra-cmake-modules qt5-qtbase-dev python3
qt5-qtscript-dev kconfig-dev kcrash-dev ki18n-dev kjobwidgets-dev
kio-dev kparts-dev ktexteditor-dev kwindowsystem-dev kxmlgui-dev
kiconthemes-dev kdoctools-dev kwallet-dev kservice-dev kitemmodels-dev
knewstuff-dev threadweaver-dev libgit2-dev kactivities-dev
plasma-framework-dev"
subpackages="kwrite kwrite-doc:kwrite_doc kwrite-lang:kwrite_lang
$pkgname-doc $pkgname-lang $pkgname-project"
source="https://download.kde.org/stable/applications/$pkgver/src/kate-$pkgver.tar.xz"
build() {
cd "$builddir"
if [ "$CBUILD" != "$CHOST" ]; then
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
fi
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_SHARED_LIBS=True \
-DCMAKE_BUILD_TYPE=RelWithDebugInfo \
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_C_FLAGS="$CFLAGS" \
${CMAKE_CROSSOPTS}
make
}
check() {
cd "$builddir"
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
project() {
pkgdesc="KDE Advanced Text Editor - Plugin for project management"
mkdir -p "$subpkgdir"/usr/lib/qt5/plugins/ktexteditor/
mv "$pkgdir"/usr/lib/qt5/plugins/ktexteditor/kateprojectplugin.so \
"$subpkgdir"/usr/lib/qt5/plugins/ktexteditor/
}
kwrite() {
pkgdesc="Simple GUI text editor"
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/kwrite "$subpkgdir"/usr/bin/
mkdir -p "$subpkgdir"/usr/share/metainfo
mv "$pkgdir"/usr/share/metainfo/org.kde.kwrite.appdata.xml \
"$subpkgdir"/usr/share/metainfo/
mkdir -p "$subpkgdir"/usr/share/applications
mv "$pkgdir"/usr/share/applications/org.kde.kwrite.desktop \
"$subpkgdir"/usr/share/applications/
}
kwrite_doc() {
local _langpath
pkgdesc="Simple GUI text editor (documentation)"
install_if="docs kwrite=$pkgver-r$pkgrel"
for _langpath in "$pkgdir"/usr/share/doc/HTML/*; do
local _sublangpath=${_langpath/"$pkgdir"/"$subpkgdir"}
if [ -d "$_langpath"/kwrite ]; then
mkdir -p "$_sublangpath"
mv "$_langpath"/kwrite "$_sublangpath"/
fi
done
}
kwrite_lang() {
local _langpath
pkgdesc="Simple GUI text editor (translations)"
for _langpath in "$pkgdir"/usr/share/locale/*/LC_MESSAGES; do
local _sublangpath=${_langpath/"$pkgdir"/"$subpkgdir"}
if [ -f "$_langpath"/kwrite.mo ]; then
mkdir -p "$_sublangpath"
mv "$_langpath"/kwrite.mo "$_sublangpath"/
fi
done
}
sha512sums="cd76272aa540aac13da8fd078ee0d5b020645c51fd16ed341e91383570d3e30d0005bdd7702c2b145538df7252443bee8c927281f93a8473b42166bf964a1b41 kate-18.08.1.tar.xz"
|