Date: Saturday, April 20, 2019 @ 16:16:12
Author: arojas
Revision: 350998
archrelease: copy trunk to testing-x86_64
Added:
kdepim-runtime/repos/testing-x86_64/
kdepim-runtime/repos/testing-x86_64/PKGBUILD
(from rev 350997, kdepim-runtime/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: kdepim-runtime/repos/testing-x86_64/PKGBUILD (from rev 350997,
kdepim-runtime/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-20 16:16:12 UTC (rev 350998)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Pierre Schmitz <[email protected]>
+
+pkgname=kdepim-runtime
+pkgver=19.04.0
+pkgrel=1
+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 kdelibs4support akonadi)
+makedepends=(extra-cmake-modules kdoctools boost kdesignerplugin qca
qt5-networkauth)
+optdepends=('qca: EWS resource' 'qt5-networkauth: EWS resource')
+conflicts=(kio-pim)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('944e956d260ba5a735b3c94c6c075f207a9c38bf977ed19507b4dd0f3eaa4993'
+ 'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck
<[email protected]>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}