mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-09 05:44:47 +02:00
56 lines
1.3 KiB
Text
56 lines
1.3 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=oxygen
|
|
pkgver=6.3.5
|
|
pkgrel=0
|
|
pkgdesc="Artwork, styles and assets for the Oxygen visual style for the Plasma Desktop"
|
|
# armhf blocked by qt6-qtdeclarative -> ki18n
|
|
arch="all !armhf"
|
|
url="https://kde.org/plasma-desktop/"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
frameworkintegration-dev
|
|
kcmutils-dev
|
|
kcompletion-dev
|
|
kconfig-dev
|
|
kdecoration-dev
|
|
kguiaddons-dev
|
|
ki18n-dev
|
|
kservice-dev
|
|
kwayland-dev
|
|
kwidgetsaddons-dev
|
|
kwindowsystem-dev
|
|
libplasma-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
xcb-util-dev
|
|
"
|
|
subpackages="$pkgname-lang"
|
|
|
|
case "$pkgver" in
|
|
*.*.9*) _rel=unstable;;
|
|
*) _rel=stable;;
|
|
esac
|
|
|
|
_repo_url="https://invent.kde.org/plasma/oxygen.git"
|
|
source="https://download.kde.org/$_rel/plasma/$pkgver/oxygen-$pkgver.tar.xz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DBUILD_QT5=OFF \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
3b8ba0c27e92c1a3ac5f805d1f59cf8edc5b08e9ac627c4c7ba2a00b10c6abc82024f5d6b79145315f37685b2c4bba3819ac2b90c8a22b3f4a72c42f9167394c oxygen-6.3.5.tar.xz
|
|
"
|