blob: 9770d6887aae7a82ab1619894c6606df80926659 (
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
47
48
49
50
51
52
53
54
55
|
# Maintainer: DeltaCopy <7x0bb03yq@mozmail.com>
# Description: Uses the precompiled Archlinux release asset from https://github.com/Bali10050/Darkly/releases
# basic info
pkgname="darkly-bin"
pkgver=0.5.14
pkgrel=1
pkgdesc="Fork of Lightly (A modern style for Qt applications)"
url="https://github.com/Bali10050/darkly"
arch=('x86_64' 'aarch64')
license=("GPL-2.0-or-later")
options=(!emptydirs !debug)
source=(
"${url}/releases/download/v${pkgver}/darkly-${pkgver}-x86_64.pkg.zst"
)
sha256sums=(
'63479bb39fde87bc8d458af3a0edb00eae04309dff6a5dbbe5ba39f89992eab4'
)
# KF6/Qt6
depends_kf6=(
'kdecoration'
'qt6-declarative'
'kcoreaddons'
'kcmutils'
'kcolorscheme'
'kconfig'
'kguiaddons'
'kiconthemes'
'kwindowsystem'
)
# KF5/QT5 for backward compatibility
depends_kf5=(
'kcmutils5'
'frameworkintegration5'
'kconfigwidgets5'
'kiconthemes5'
'kirigami2'
'kwindowsystem5'
)
depends=("${depends_kf6[@]}" "${depends_kf5[@]}")
conflicts=(
darkly
)
package() (
cp -R "${srcdir}/usr/" "${pkgdir}/usr"
)
|