mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-21 21:42:17 +01:00
43 lines
1.2 KiB
Plaintext
43 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=kde-dev-utils
|
|
pkgver=24.12.2
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://kde.org/applications/development/"
|
|
pkgdesc="Small utilities for developers using KDE/Qt libs/frameworks"
|
|
license="(LGPL-2.0-only OR LGPL-3.0-only) AND GPL-2.0-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
kcoreaddons-dev
|
|
ki18n-dev
|
|
kparts-dev
|
|
kwidgetsaddons-dev
|
|
qt6-qttools-dev
|
|
samurai
|
|
"
|
|
subpackages="$pkgname-lang"
|
|
_repo_url="https://invent.kde.org/sdk/kde-dev-utils.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/kde-dev-utils-$pkgver.tar.xz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
efe86476f8f1faef17d157d37128c9e0687e057998ade4d7071f49469f3876bc954719bcfe78306ab8fb8dbdca9348f49d9c2220a767889cc9f32139513d54c4 kde-dev-utils-24.12.2.tar.xz
|
|
"
|