mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-22 05:52:33 +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.12.2
|
|
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="
|
|
ea57ae202bcbb7294df69d271f3872ec33fd4d0c71082a140891f6cd05b4b7ea8329979c3addfff841eaee38d2e5f62cb091c5487ae22e1929cae7be7e7a869f kdebugsettings-24.12.2.tar.xz
|
|
"
|