Files
horizon-packages/srcpkgs/kf6-kwindowsystem/template
T

54 lines
1.7 KiB
Bash

# Template file for 'kf6-kwindowsystem'
pkgname=kf6-kwindowsystem
version=6.25.0
revision=1
build_style=cmake
configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml
-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins"
hostmakedepends="extra-cmake-modules qt6-tools qt6-base
qt6-declarative-host-tools pkg-config wayland-devel"
makedepends="qt6-declarative-devel
plasma-wayland-protocols wayland-devel qt6-base-private-devel"
short_desc="KDE frameworks - Access to the windowing system"
maintainer="John <me@johnnynator.dev>"
license="LGPL-2.1-or-later"
homepage="https://invent.kde.org/frameworks/kwindowsystem"
distfiles="${KDE_SITE}/frameworks/${version%.*}/${pkgname#kf6-}-${version}.tar.xz"
checksum=b51448a7669efa18190ab7fa8d6f5e0f77d8f9879cf457dadb4629b245a02434
post_install() {
sed -i -e 's:/usr/[a-z0-9-]*/usr/include;::' \
${DESTDIR}/usr/lib/cmake/*/*Targets.cmake
}
do_check() {
cd build
# disable failing tests
tests=("kwindowsystem-kmanagerselectiontest"
"kwindowsystem-kstartupinfo_unittest"
"kwindowsystem-kxmessages_unittest"
"kwindowsystem-kkeyserver_x11_unittest"
"kwindowsystem-kwindoweffectstest"
"kwindowsystem-kwindowinfox11test"
"kwindowsystem-kwindowsystemx11test"
"kwindowsystem-kwindowsystem_threadtest"
"kwindowsystem-netrootinfotestwm"
"kwindowsystem-netwininfotestclient"
"kwindowsystem-netwininfotestwm"
"kwindowsystem-kmanagerselectiontest"
"kwindowsystem-compositingenabled_test"
"kwindowsystem-compositingenabled_test")
ctest -E "($( echo ${tests[@]} | tr " " "|" ))"
}
kf6-kwindowsystem-devel_package() {
depends="${sourcepkg}>=${version}_${revision} qt6-base-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/lib/pkgconfig
vmove usr/include
vmove usr/lib/cmake
vmove "usr/lib/*.so"
}
}