aboutsummaryrefslogtreecommitdiffstats
path: root/community/evolution-ews/APKBUILD
blob: 18918388d9492c3fade84578f48be049be599a38 (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
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=evolution-ews
pkgver=3.34.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 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"

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

package() {
	cd "$builddir"/build
	make DESTDIR="$pkgdir" install
}

sha512sums="c9c12fd92c4c977d0ee87e2196b3a25481a50bcf385c410092f14969e47772cd2dda65cf725a09c1f45e346919af8bddbf2700f8f3a27ed759f038e10fa61ba9  evolution-ews-3.34.0.tar.xz"