mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=evolution-ews
|
|
pkgver=3.32.2
|
|
pkgrel=0
|
|
pkgdesc="MS Exchange integration through Exchange Web Services"
|
|
url="https://wiki.gnome.org/Apps/Evolution/EWS"
|
|
arch="x86 x86_64 ppc64le"
|
|
license="LGPL-2.1"
|
|
depends="evolution"
|
|
makedepends="cmake
|
|
gtk-doc intltool glib-dev gettext-dev gnome-common
|
|
evolution-data-server-dev evolution-dev libmspack-dev"
|
|
subpackages="$pkgname-lang"
|
|
source="https://download.gnome.org/sources/evolution-ews/${pkgver%.*}/evolution-ews-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
mkdir -p "$builddir"/build
|
|
cd "$builddir"/build
|
|
# CFLAGS="$CFLAGS -I/usr/include/gnu-libiconv" \
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"/build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="5696ea660d0b52c0083664ad203eaed372fb9653399152ccbca0f6360a3e0c4503b5dacf4f9bf5650b1b64696c0fe06e2383bb408bed604ea0312660b4639388 evolution-ews-3.32.2.tar.xz"
|