mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-11 16:43:12 +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.30.3
|
|
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="dd9421f1b112ea6a65eeebde2bc13198ffe37718d6ca95b655eff7faa4fd38567c6e8caab54e78ad005fe550970ef9bf7ea7cdc8fddfddee5189184e703034e2 evolution-ews-3.30.3.tar.xz"
|