aboutsummaryrefslogtreecommitdiffstats
path: root/community/evolution-ews/APKBUILD
blob: 7aa1886ca1d79c3bb3aa12804af5f0c6a6dacc94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=evolution-ews
pkgver=3.36.0
pkgrel=0
pkgdesc="MS Exchange integration through Exchange Web Services"
url="https://wiki.gnome.org/Apps/Evolution/EWS"
arch="all !s390x" # missing evolution on s390x
license="LGPL-2.1-or-later"
depends="evolution"
makedepends="cmake gtk-doc intltool glib-dev gettext-dev evolution-data-server-dev
	evolution-dev libmspack-dev uhttpmock-dev"
options="!check" # fail in docker due to port restrictions
subpackages="$pkgname-lang"
source="https://download.gnome.org/sources/evolution-ews/${pkgver%.*}/evolution-ews-$pkgver.tar.xz"

build() {
	mkdir -p "$builddir"/build
	cd "$builddir"/build
	cmake \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_BUILD_TYPE=None \
		-DENABLE_TESTS=TRUE \
		..
	make
}

check() {
	make -C build test
}

package() {
	make -C build DESTDIR="$pkgdir" install
}

sha512sums="39cb8db30a0578e553c01e38c05b231d851ee07cf4f0848698b1176a3c11af60888d93f380b31a69703009764a5d488ab67d945e4cbbfb390d3c1228f15938f0  evolution-ews-3.36.0.tar.xz"