diff options
Diffstat (limited to 'nonprism')
-rw-r--r-- | nonprism/evolution-data-server/PKGBUILD | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/nonprism/evolution-data-server/PKGBUILD b/nonprism/evolution-data-server/PKGBUILD index e66011d0f..cb1f06240 100644 --- a/nonprism/evolution-data-server/PKGBUILD +++ b/nonprism/evolution-data-server/PKGBUILD @@ -1,28 +1,34 @@ -# $Id$ -# Maintainer (Arch): Jan de Groot <jgc@archlinux.org> +# Maintainer (arch): Jan Alexander Steffens (heftig) <heftig@archlinux.org> +# Contributor (arch): Jan de Groot <jgc@archlinux.org> # Contributor: Andreas Grapentin <andreas@grapentin.org> # Contributor: Márcio Silva <coadde@hyperbola.info> # Contributor: Isaac David <isacdaavid@at@isacdaavid@dot@info> # Contributor: Freemor <freemor@freemor.ca> +# Contributor: bill-auger <bill-auger@programmer.net> + # parabola changes and rationale: # - removed libgdata support +# - pinned to 'icu' sodep + pkgname=evolution-data-server -pkgver=3.36.0 -pkgrel=1 +pkgver=3.38.2 +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 i686 armv7h) -depends=(gnome-online-accounts nss krb5 libgweather libical db libphonenumber) -makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake) +arch=(x86_64) +arch+=(armv7h i686) +depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata libphonenumber) +depends=(${depends[@]/libgdata/}) +makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake ninja) provides=(libcamel-1.2.so libebackend-1.2.so libebook-1.2.so libebook-contacts-1.2.so libecal-2.0.so libedata-book-1.2.so libedata-cal-2.0.so libedataserver-1.2.so libedataserverui-1.2.so) license=(GPL) -_commit=7d6f7ee086f01dc903c0dec8230621dcf1627f13 # tags/3.36.0 +_commit=e5135dcf71a7f4ac0e60acb7ba2b3ac551e9578e # tags/3.38.2^0 source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit") sha256sums=('SKIP') @@ -36,7 +42,9 @@ prepare() { } build() { - cmake -H$pkgname -Bbuild \ + CFLAGS+=" $CPPFLAGS" + CXXFLAGS+=" $CPPFLAGS" + cmake -S $pkgname -B build -G Ninja \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIBEXEC_INSTALL_DIR=/usr/lib \ -DSYSCONF_INSTALL_DIR=/etc \ @@ -58,5 +66,7 @@ check() { } package() { - DESTDIR="$pkgdir" cmake --build build --target install + depends+=(libicui18n.so libicuuc.so) + + DESTDIR="$pkgdir" cmake --install build } |