mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
57 lines
1.3 KiB
Plaintext
57 lines
1.3 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-plasma
|
|
pkgname=plymouth-kcm
|
|
pkgver=6.1.5
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://invent.kde.org/plasma/plymouth-kcm"
|
|
pkgdesc="KCM to manage the Plymouth (Boot) theme"
|
|
license="GPL-2.0-or-later"
|
|
depends="plymouth"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
karchive-dev
|
|
kcmutils-dev
|
|
kconfig-dev
|
|
kconfigwidgets-dev
|
|
kdeclarative-dev
|
|
ki18n-dev
|
|
kio-dev
|
|
knewstuff-dev
|
|
plymouth-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
|
|
case "$pkgver" in
|
|
*.90*) _rel=unstable;;
|
|
*) _rel=stable;;
|
|
esac
|
|
subpackages="$pkgname-lang"
|
|
_repo_url="https://invent.kde.org/plasma/plymouth-kcm.git"
|
|
source="https://download.kde.org/stable/plasma/$pkgver/plymouth-kcm-$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() {
|
|
ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
609997981ed905226af62cac55d523864133e73949458334b358426514d65d0d0a2b809049dea08da20426d9318a22e0327a9334a1004d8a59e6592485993ad4 plymouth-kcm-6.1.5.tar.xz
|
|
"
|