mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-14 10:02:38 +01:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
maintainer="team/kde <bribbers@disroot.org>"
|
|
pkgname=kdebugsettings
|
|
pkgver=24.08.3
|
|
pkgrel=0
|
|
arch="all !armhf"
|
|
url="https://kde.org/applications/utilities/"
|
|
pkgdesc="An application to enable/disable qCDebug"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
kcompletion-dev
|
|
kconfig-dev
|
|
kcoreaddons-dev
|
|
kdbusaddons-dev
|
|
ki18n-dev
|
|
kitemviews-dev
|
|
kwidgetsaddons-dev
|
|
kxmlgui-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
checkdepends="xvfb-run"
|
|
subpackages="$pkgname-lang"
|
|
_repo_url="https://invent.kde.org/utilities/kdebugsettings.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/kdebugsettings-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
xvfb-run -a ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
a2d976be74500166b26a93c9ac9cd537ba109ceae5b1c4a98e1e4ee633058987517988d5ebabd9cb70bacb4e4fd8116f01d0f1fc22d260ca837a80eaa6b73615 kdebugsettings-24.08.3.tar.xz
|
|
"
|