Date: Tuesday, October 25, 2022 @ 17:03:10
Author: heftig
Revision: 458938
archrelease: copy trunk to gnome-unstable-x86_64
Added:
evolution-ews/repos/gnome-unstable-x86_64/
evolution-ews/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 458935, evolution-ews/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: evolution-ews/repos/gnome-unstable-x86_64/PKGBUILD (from rev 458935,
evolution-ews/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 17:03:10 UTC (rev 458938)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+
+pkgname=evolution-ews
+pkgver=3.46.1
+pkgrel=1
+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=1e12804bae6386d43ccb63b3c85597092ef5ffa1 # tags/3.46.1^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: