diff options
Diffstat (limited to 'nonprism/evolution-data-server/PKGBUILD')
-rw-r--r-- | nonprism/evolution-data-server/PKGBUILD | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/nonprism/evolution-data-server/PKGBUILD b/nonprism/evolution-data-server/PKGBUILD index 838398a57..1773d48fe 100644 --- a/nonprism/evolution-data-server/PKGBUILD +++ b/nonprism/evolution-data-server/PKGBUILD @@ -8,8 +8,8 @@ # - removed libgdata support pkgname=evolution-data-server -pkgver=3.28.0+6+g501f51b1c -pkgrel=2 +pkgver=3.28.3 +pkgrel=1 pkgrel+=.nonprism1 pkgdesc="Centralized access to appointments and contacts" pkgdesc+=", without libgdata support" @@ -19,8 +19,8 @@ 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=501f51b1c6c5ae8d916bf86110d13b6bbf7f974c # gnome-3-28 -source=("git+https://git.gnome.org/browse/evolution-data-server#commit=$_commit") +_commit=2f829f8be300b7041e81315edd1e716e757dd685 # tags/3.28.3^0 +source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit") sha256sums=('SKIP') pkgver() { @@ -29,16 +29,13 @@ pkgver() { } prepare() { + mkdir build cd $pkgname } build() { - cd $pkgname - - # http://site.icu-project.org/download/61#TOC-Migration-Issues - CXXFLAGS+=' -DU_USING_ICU_NAMESPACE=1' - - cmake . -G Ninja \ + cd build + cmake ../$pkgname -G Ninja \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIBEXEC_INSTALL_DIR=/usr/lib \ -DSYSCONF_INSTALL_DIR=/etc \ @@ -50,17 +47,15 @@ build() { -DENABLE_GOOGLE_AUTH=OFF \ -DENABLE_GTK_DOC=ON \ -DWITH_PHONENUMBER=ON - ninja + cmake --build . } check() { - cd $pkgname # libedata-book tests fail because they try to # mkdir /usr/lib/evolution-data-server/camel-providers - ninja test || : + cmake --build build --target test || : } package() { - cd $pkgname - DESTDIR="$pkgdir" ninja install + DESTDIR="$pkgdir" cmake --build build --target install } |