aboutsummaryrefslogtreecommitdiffstats
path: root/community/plasma-desktop/APKBUILD
blob: 1a1f8bd14ca25fbf2c59f65dfaadf3a28bfbab80 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=plasma-desktop
pkgver=5.17.0
pkgrel=0
pkgdesc="KDE Plasma Desktop"
arch="all" # Limited by plasma-workspace -> libksysguard -> qt5-qtwebengine
url='https://www.kde.org/workspaces/plasmadesktop/'
license="GPL-2.0-only AND LGPL-2.1-only"
depends="kirigami2 plasma-workspace setxkbmap qqc2-desktop-style"
depends_dev="
	qt5-qtbase-dev
	qt5-qtdeclarative-dev
	qt5-qtx11extras-dev
	qt5-qtsvg-dev
	kauth-dev
	plasma-framework-dev
	ki18n-dev
	kcmutils-dev
	knewstuff-dev
	kdelibs4support-dev
	knotifications-dev
	knotifyconfig-dev
	attica-dev
	kwallet-dev
	krunner-dev
	kglobalaccel-dev
	kdeclarative-dev
	kpeople-dev
	kdbusaddons-dev
	kactivities-dev
	kactivities-stats-dev
	kconfig-dev
	plasma-workspace-dev
	kwin-dev
	kitemmodels-dev
	kemoticons-dev
	baloo-dev
	fontconfig-dev
	eudev-dev
	xf86-input-libinput-dev
	xf86-input-evdev-dev
	xf86-input-synaptics-dev
	libxkbfile-dev
	libxcursor-dev
	libxi-dev
	"
makedepends="$depends_dev extra-cmake-modules kdoctools-dev"
checkdepends="xvfb-run iso-codes"
source="https://download.kde.org/stable/plasma/$pkgver/plasma-desktop-$pkgver.tar.xz"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang knetattach"
options="!check" # Requires running dbus

prepare() {
	default_prepare

	mkdir "$builddir"/build
}

build() {
	cd "$builddir"/build
	cmake "$builddir" \
		-DCMAKE_BUILD_TYPE=RelWithDebInfo \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib
	make
}

check() {
	cd "$builddir"/build
	CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest
}

package() {
	cd "$builddir"/build
	DESTDIR="$pkgdir" make install

	rm "$pkgdir"/usr/bin/knetattach
	rm "$pkgdir"/usr/share/applications/org.kde.knetattach.desktop
}

knetattach() {
	pkgdesc="Wizard which makes it easier to integrate network resources with the Plasma Desktop"
	depends="kdelibs4support"

	cd "$builddir"/build/knetattach
	DESTDIR="$subpkgdir" make install
}
sha512sums="159c9776adefe699f2ae1abea7d72d123231e9f1226bd924c5b3b01efe5724fe4caeee53010e7fce08f680e0ea1c50654294f11253ecee0ac43d37614e30d801  plasma-desktop-5.17.0.tar.xz"