Date: Monday, December 12, 2022 @ 17:54:13
Author: heftig
Revision: 464203
archrelease: copy trunk to testing-x86_64
Added:
evolution-ews/repos/testing-x86_64/
evolution-ews/repos/testing-x86_64/PKGBUILD
(from rev 464201, evolution-ews/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: evolution-ews/repos/testing-x86_64/PKGBUILD (from rev 464201,
evolution-ews/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-12-12 17:54:13 UTC (rev 464203)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=evolution-ews
+pkgver=3.46.2
+pkgrel=2
+pkgdesc="MS Exchange integration through Exchange Web Services"
+url="https://wiki.gnome.org/Apps/Evolution/EWS"
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(libmspack evolution)
+makedepends=(git intltool python cmake ninja systemd)
+options=(debug)
+_commit=64dac78fd7618b48681b7e2095593a727fc9b4c6 # tags/3.46.2^0
+source=("git+https://gitlab.gnome.org/GNOME/evolution-ews.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+}
+
+build() {
+ cmake -S $pkgname -B build -G Ninja \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DLIBEXEC_INSTALL_DIR=/usr/lib \
+ -DSYSCONF_INSTALL_DIR=/etc
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}
+
+# vim:set sw=2 sts=-1 et: