forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sync of Google calendars (FS#73660)
git-svn-id: file:///srv/repos/svn-packages/svn@436377 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
1 parent
909e2de
commit edd3ad9
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,28 @@ | |
|
||
pkgname=kdepim-runtime | ||
pkgver=21.12.2 | ||
pkgrel=1 | ||
pkgrel=2 | ||
pkgdesc='Extends the functionality of kdepim' | ||
arch=(x86_64) | ||
url='https://kontact.kde.org' | ||
license=(GPL LGPL FDL) | ||
depends=(libkolabxml kdav akonadi-calendar knotifyconfig kalarmcal kmbox pimcommon akonadi-notes akonadi qca-qt5 qt5-networkauth) | ||
makedepends=(extra-cmake-modules kdoctools boost libetebase) | ||
optdepends=('libetebase: EteSync resource') | ||
source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}) | ||
source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig} | ||
https://invent.kde.org/pim/kdepim-runtime/-/commit/624ef213.patch) | ||
sha256sums=('12fc55d5727b98556a68d335dffe3e20893ac95a4be99820be3e4113967a3078' | ||
'SKIP') | ||
'SKIP' | ||
'e3652233f969076242b0b16c00617cd90ef4265dcf813ca3ae4b336eabf4be29') | ||
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <[email protected]> | ||
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 # Christoph Feck <[email protected]> | ||
D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker <[email protected]> | ||
options=(debug) | ||
|
||
prepare() { | ||
patch -d $pkgname-$pkgver -p1 < 624ef213.patch # Fix sync of Google calendars | ||
} | ||
|
||
build() { | ||
cmake -B build -S $pkgname-$pkgver \ | ||
-DBUILD_TESTING=OFF | ||
|