mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 12:26:24 +02:00
40 lines
996 B
Text
40 lines
996 B
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-sounds
|
|
pkgver=6.3.5
|
|
pkgrel=0
|
|
pkgdesc="The Oxygen Sound Theme"
|
|
arch="noarch"
|
|
url="https://kde.org/plasma-desktop/"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
|
|
case "$pkgver" in
|
|
*.*.9*) _rel=unstable;;
|
|
*) _rel=stable;;
|
|
esac
|
|
|
|
_repo_url="https://invent.kde.org/plasma/oxygen-sounds.git"
|
|
source="https://download.kde.org/$_rel/plasma/$pkgver/oxygen-sounds-$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="
|
|
66d39bc5681b2acdac75804f3d6e31dc22c8efdbf431fe02612abda6b5094fd61d1327026d8f799ef99cf64c9ddb3c17b47c908f6c20015cf6f25786b3ee1b0e oxygen-sounds-6.3.5.tar.xz
|
|
"
|