pmaports/temp/plasma-desktop/APKBUILD
Bart Ribbers 0ccb5c05fd
temp/*: add qmlplugindump workaround (MR 1921)
Seems we missed these when forking Plasma and now the armv7 builders are
failing on it

[ci:skip-build] Won't succeed anyway as the packages haven't been
uploaded to the repos yet, so pmbootstrap will try to build the entirety
of Plasma and fail because it takes too long
[ci:skip-vercheck] No need to bump pkgrel
2021-02-03 12:51:55 +01:00

108 lines
2.4 KiB
Text

# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=plasma-desktop
pkgver=5.20.90
pkgrel=0
pkgdesc="KDE Plasma Desktop"
# s390x, mips, mips64 blocked by ibus
# armhf blocked by qt5-qtdeclarative
arch="all !s390x !armhf !mips !mips64"
url='https://kde.org/plasma-desktop/'
license="GPL-2.0-only AND LGPL-2.1-only"
depends="
font-noto-emoji
ibus-emoji
kirigami2
plasma-workspace
qqc2-desktop-style
setxkbmap
"
makedepends="
attica-dev
baloo-dev
eudev-dev
extra-cmake-modules
fontconfig-dev
ibus-dev
kaccounts-integration-dev
kactivities-dev
kactivities-stats-dev
kauth-dev
kcmutils-dev
kconfig-dev
kdbusaddons-dev
kdeclarative-dev
kdelibs4support-dev
kdoctools-dev
kemoticons-dev
kglobalaccel-dev
ki18n-dev
kitemmodels-dev
knewstuff-dev
knotifications-dev
knotifyconfig-dev
kpeople-dev
krunner-dev
kwallet-dev
kwin-dev
libxcursor-dev
libxi-dev
libxkbfile-dev
plasma-framework-dev
plasma-workspace-dev
qt5-qtbase-dev
qt5-qtdeclarative-dev
qt5-qtsvg-dev
qt5-qtx11extras-dev
xf86-input-evdev-dev
xf86-input-libinput-dev
xf86-input-synaptics-dev
"
checkdepends="xvfb-run iso-codes"
case "$pkgver" in
*.90*) _rel=unstable;;
*) _rel=stable;;
esac
source="https://download.kde.org/$_rel/plasma/$pkgver/plasma-desktop-$pkgver.tar.xz"
subpackages="$pkgname-doc $pkgname-lang knetattach"
options="!check" # Requires running dbus
prepare() {
default_prepare
# qmlplugindump fails for armv7+qemu (pmb#1970). This is purely for
# packager knowledge and doesn't affect runtime, so we can disable it.
if [ "$CARCH" = "armv7" ]; then
sed -i "s/ecm_find_qmlmodule/# ecm_find_qmlmodule/g" CMakeLists.txt
fi
}
build() {
cmake -B build \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
}
check() {
cd build
CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest
}
package() {
DESTDIR="$pkgdir" cmake --install build
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="3fd0edd43ffd580fc6b258d12974826e67138186c6779af1f932839f05f21575beb06a0400ee8ca367e9256a28023760d87d8e2383014d4a4e0db2bdd946e237 plasma-desktop-5.20.90.tar.xz"