mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: team/kde <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
pkgname=kdebugsettings
|
|
pkgver=24.08.1
|
|
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 ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
fe1bab792ea94032e4b8a74253f82616a2cf7636b326cfc5bae8c43c0c2f42d6e26076bb64fff04b0c0d8b500436aaaea92086fe80d0a409e1d7165dff586834 kdebugsettings-24.08.1.tar.xz
|
|
"
|