mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 09:54:43 +02:00
45 lines
1.1 KiB
Text
45 lines
1.1 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=breeze-gtk
|
|
pkgver=6.3.5
|
|
pkgrel=0
|
|
pkgdesc="A GTK Theme Built to Match KDE's Breeze"
|
|
# armhf blocked by qt6-qtdeclarative -> breeze
|
|
arch="noarch !armhf"
|
|
url="https://kde.org/plasma-desktop/"
|
|
license="LGPL-2.1-only"
|
|
depends="gtk-engines"
|
|
makedepends="
|
|
breeze
|
|
breeze-dev
|
|
extra-cmake-modules
|
|
py3-cairo
|
|
samurai
|
|
sassc
|
|
"
|
|
|
|
case "$pkgver" in
|
|
*.*.9*) _rel=unstable;;
|
|
*) _rel=stable;;
|
|
esac
|
|
|
|
_repo_url="https://invent.kde.org/plasma/breeze-gtk.git"
|
|
source="https://download.kde.org/$_rel/plasma/$pkgver/breeze-gtk-$pkgver.tar.xz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
8c72a60adbe585e9c6f3c617e5f39f4b07c6306bd741cbae140f2e08ba781b95da7f688b4a77d1c2f635a2100cd26de097446de890957d2cb5d944005a6ea629 breeze-gtk-6.3.5.tar.xz
|
|
"
|