blob: b8e474993afa417e55d18925019f1b1e928d8830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer: callmetango
# Contributor: artist <artist@artixlinux.org>
pkgname=sonic-silver-theme
_pkgname=silver-theme
pkgver=6.6.0
pkgrel=3
pkgdesc='Highly customizable binary Window Decoration, Application Style and Global Theme plugin for SonicDE.'
arch=(x86_64)
url='https://github.com/Sonic-DE/silver-theme'
license=('LGPL-2.0-or-later')
depends=(breeze-icons
frameworkintegration
gcc-libs
glibc
hicolor-icon-theme
kcmutils
kcolorscheme
kconfig
ki18n
kiconthemes
kwidgetsaddons
qt6-base
qt6-declarative
qt6-svg
sonic-decoration
sonic-frameworks-core-addons
sonic-frameworks-gui-addons
sonic-frameworks-quick-ui
sonic-frameworks-windowsystem
xdg-utils)
makedepends=(sonic-frameworks-cmake-modules)
groups=(sonicde)
source=("$pkgname-$pkgver.tar.gz::${url}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('152eb85645a19180f28b695a7dcb6f429cbe40c3f8d7dec0d95a225405f70261')
build() {
cmake -B build -S "${_pkgname}-${pkgver}" \
-DBUILD_TESTING=OFF \
-DBUILD_QT5=OFF
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
|