blob: 9a1a8e6b5f3528437046e6fdc2c7fcae61c4fd2a (
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
56
57
58
|
# Maintainer: DeltaCopy <7x0bb03yq@mozmail.com>
# Description: Uses the precompiled Archlinux build asset from https://github.com/Bali10050/Lightly/releases
# basic info
pkgname="lightly-qt6-bin"
pkgver=0.5.11
pkgrel=1
pkgdesc="Bali10050's fork of Lightly (A modern style for qt applications)"
url="https://github.com/Bali10050/lightly"
arch=('x86_64' 'aarch64')
license=("GPL-2.0-or-later")
options=(!emptydirs !debug)
source=(
"${url}/releases/download/v${pkgver}/lightly-${pkgver}-x86_64.pkg.zst"
)
sha256sums=(
'05f527266d298d549f1270fec8efd495e647eee8edf573fc0472df53f88d329b'
)
# 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=(
lightly-kf6
lightly-qt
lightly-qt6
)
package() (
cp -R "${srcdir}/usr/" "${pkgdir}/usr"
)
|