blob: 256e67d3a195f021244c978d91521c6a1c8a406a (
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
|
pkgname=plasma6-applets-eventcalendar
pkgver=1.0.4
pkgrel=1
pkgdesc="KDE Plasma 6 plasmoid for a calendar+agenda with weather that syncs to Google Calendar"
arch=('x86_64')
url="https://github.com/lenonk/plasma6-applet-eventcalendar"
license=('GPL')
depends=(
'plasma-workspace'
'libplasma'
'plasma5support'
'kirigami'
'kcmutils'
'ksvg'
'qt6-base'
'qt6-declarative'
'qt6-5compat'
'qt6-networkauth'
)
makedepends=(
'cmake'
'extra-cmake-modules'
'gettext'
'kpackage'
'libplasma'
'qt6-base'
'qt6-networkauth'
)
optdepends=(
'plasma-nm: network connectivity monitoring integration'
'akonadi-calendar-tools: local Akonadi event create/edit support via konsolekalendar'
'python-icalendar: iCal calendar source support'
'python-gobject: notification helper script backend'
'libnotify: desktop notifications for notification helper'
'libcanberra: notification sound playback'
'pipewire-audio: sound preview via pw-play'
'libpulse: sound preview via paplay'
'alsa-utils: sound preview via aplay'
'ffmpeg: sound preview via ffplay'
)
source=("$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cmake -B build -S "plasma6-applet-eventcalendar-$pkgver"
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|