mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-11 06:38:31 +02:00
52 lines
1.2 KiB
Text
52 lines
1.2 KiB
Text
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-plasma
|
|
maintainer="team/kde <bribbers@disroot.org>"
|
|
pkgname=plymouth-kcm
|
|
pkgver=6.3.5
|
|
pkgrel=0
|
|
# armhf blocked by qt6-qtdeclarative -> ki18n
|
|
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
|
|
"
|
|
subpackages="$pkgname-lang"
|
|
|
|
case "$pkgver" in
|
|
*.*.9*) _rel=unstable;;
|
|
*) _rel=stable;;
|
|
esac
|
|
|
|
_repo_url="https://invent.kde.org/plasma/plymouth-kcm.git"
|
|
source="https://download.kde.org/$_rel/plasma/$pkgver/plymouth-kcm-$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="
|
|
ac066e47496744d91845e3bd53410fe51c97bbda47fc042f134b37b5b466a00315d665088fb3ef4498110c5fcb0cd88677e80a2fd68c63084b22f065d88140e1 plymouth-kcm-6.3.5.tar.xz
|
|
"
|