mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=evolution-ews
|
|
pkgver=3.52.2
|
|
pkgrel=0
|
|
pkgdesc="MS Exchange integration through Exchange Web Services"
|
|
url="https://wiki.gnome.org/Apps/Evolution/EWS"
|
|
arch="all !s390x !riscv64" # blocked by evolution
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="
|
|
cmake
|
|
evolution-data-server-dev
|
|
evolution-dev
|
|
gettext-dev
|
|
glib-dev
|
|
gtk-doc
|
|
libmspack-dev
|
|
libsoup3-dev
|
|
samurai
|
|
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() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DENABLE_TESTS=OFF
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
cd build
|
|
CTEST_OUTPUT_ON_FAILURE=TRUE ctest
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
b92db18b347c19fab15097aa7cedef876ca13364ece0ff2836cf6160bb2eb2ceb8d7eeaf9bada0369776ea32edca6938952a0dea04b229afd9690c744e16616c evolution-ews-3.52.2.tar.xz
|
|
"
|