# $Id$ # Maintainer (Arch): Jan de Groot # Contributor: Andreas Grapentin # Contributor: Márcio Silva # Contributor: Isaac David # Contributor: Freemor # parabola changes and rationale: # - removed libgdata support pkgname=evolution-data-server pkgver=3.28.5 pkgrel=2 pkgrel+=.nonprism1 pkgdesc="Centralized access to appointments and contacts" pkgdesc+=", without libgdata support" url="https://wiki.gnome.org/Apps/Evolution" arch=(x86_64) arch+=(i686 armv7h) depends=(gnome-online-accounts nss krb5 libgweather libical db libphonenumber) makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake ninja) license=(GPL) _commit=e1da9bbbe68e669482d76e498e63da8abf8d30b0 # tags/3.28.5^0 source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit") sha256sums=('SKIP') pkgver() { cd $pkgname git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g' } prepare() { mkdir build cd $pkgname } build() { cd build cmake ../$pkgname -G Ninja \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIBEXEC_INSTALL_DIR=/usr/lib \ -DSYSCONF_INSTALL_DIR=/etc \ -DENABLE_INTROSPECTION=ON \ -DENABLE_VALA_BINDINGS=ON \ -DENABLE_UOA=OFF \ -DENABLE_GOOGLE=OFF \ -DHAVE_LIBGDATA=OFF \ -DENABLE_GOOGLE_AUTH=OFF \ -DENABLE_GTK_DOC=ON \ -DWITH_PHONENUMBER=ON cmake --build . } check() { # libedata-book tests fail because they try to # mkdir /usr/lib/evolution-data-server/camel-providers cmake --build build --target test || : } package() { DESTDIR="$pkgdir" cmake --build build --target install }