aports/community/kguiaddons/APKBUILD
2025-04-24 20:33:45 +02:00

54 lines
1.3 KiB
Text

# Contributor: Bart Ribbers <bribbers@disroot.org>
# The group tag is just to easily find this apkbuild by some scripts for automation
# group=kde-frameworks
maintainer="team/kde <bribbers@disroot.org>"
pkgname=kguiaddons
pkgver=6.13.0
pkgrel=0
pkgdesc="Addons to QtGui"
arch="all"
url="https://community.kde.org/Frameworks"
license="LGPL-2.1-only OR LGPL-3.0-only"
depends_dev="
plasma-wayland-protocols
qt6-qttools-dev
qt6-qtwayland-dev
wayland-dev
"
makedepends="$depends_dev
extra-cmake-modules
doxygen
graphviz
samurai
"
checkdepends="xvfb-run"
subpackages="$pkgname-dev $pkgname-doc $pkgname-bin"
_repo_url="https://invent.kde.org/frameworks/kguiaddons.git"
source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kguiaddons-$pkgver.tar.xz"
build() {
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_QCH=ON
cmake --build build
}
check() {
xvfb-run ctest --test-dir build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
bin() {
amove usr/bin/kde-geo-uri-handler
amove usr/share/applications
}
sha512sums="
93a752de2f2f856746188dd8c23e34e04d6f2b926bf177bd5ba632f69bc0ef2bab2d22f90239d5b62805b18c7dfb26bcbd03dde56e1a99f2aad28601124cc4db kguiaddons-6.13.0.tar.xz
"