mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-13 01:22:23 +01:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# 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-scripts
|
|
pkgver=24.12.3
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf !s390x"
|
|
url="https://kde.org/applications/development/"
|
|
pkgdesc="Scripts and setting files useful during development of KDE software"
|
|
license="GPL-2.0-or-later AND GFDL-1.2-only"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
kdoctools-dev
|
|
samurai
|
|
"
|
|
subpackages="$pkgname-doc"
|
|
_repo_url="https://invent.kde.org/sdk/kde-dev-scripts.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/kde-dev-scripts-$pkgver.tar.xz"
|
|
# No code to test
|
|
options="!check"
|
|
|
|
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="
|
|
b4dccd1b25a6936e4fb0959fe66fdcf5ccb0e83cb89c1a04a3fa06d97a3cec5a4b104ce4079613a68280a68efa84e58bdafdcea1cdde1fc404f6ba99a3df5ece kde-dev-scripts-24.12.3.tar.xz
|
|
"
|