67 lines
2.4 KiB
Bash
67 lines
2.4 KiB
Bash
# Template file for 'evolution-data-server'
|
|
pkgname=evolution-data-server
|
|
version=3.26.4
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DENABLE_GOOGLE_AUTH=OFF -DENABLE_UOA=OFF"
|
|
hostmakedepends="pkg-config intltool flex glib-devel gperf $(vopt_if gir gobject-introspection)"
|
|
makedepends="db-devel sqlite-devel mit-krb5-devel nss-devel libical-devel
|
|
libsecret-devel libsoup-gnome-devel gcr-devel libldap-devel
|
|
libgdata-devel $(vopt_if gir vala-devel) libgweather-devel icu-devel"
|
|
depends="libsoup-gnome>=2.46 libgweather>=3.12"
|
|
short_desc="Centralized access to appointments and contacts"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="https://wiki.gnome.org/Apps/Evolution"
|
|
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
|
checksum=063ea91b94492c69928d3181c745781fe09e5234f1b94e0ba110cee00c2cb40f
|
|
|
|
build_options="gir"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
fi
|
|
|
|
if [ ! -z "$build_option_gir" ]; then
|
|
configure_args+=" -DENABLE_INTROSPECTION=ON -DENABLE_VALA_BINDINGS=ON"
|
|
fi
|
|
|
|
# cmake perfomrms 2 checks using binary runtime, about iconv and sfrtime.
|
|
# musl (1.1.16) does not support "ISO-2022-JP" encoding (see its roadmap),
|
|
# although evolution-data-server is fine with musl.
|
|
# If crossbuild, cmake let disabling runtime checks via specific directives.
|
|
# test iconv-detect.c also generates iconv-detect.h that is required for build.
|
|
# So completly disable test from iconv-detect.c (cmake.patch file) and
|
|
# use a cmake cache file on crossbuild to disable sfrtime running test.
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+=" -C disableRuntimeTests.cmake"
|
|
fi
|
|
|
|
pre_configure() {
|
|
mkdir -p build
|
|
cp ${FILESDIR}/iconv-detect.h ${wrksrc}/build/.
|
|
if [ "$CROSS_BUILD" ]; then
|
|
cp ${FILESDIR}/disableRuntimeTests.cmake ${wrksrc}/build/.
|
|
fi
|
|
}
|
|
post_install() {
|
|
# Fix broken pkg-config
|
|
sed -i "s|^Requires: gio-2.0, , |Requires: gio-2.0, mozilla-nspr, mozilla-nss|" \
|
|
$DESTDIR/usr/lib/pkgconfig/evolution-data-server-1.2.pc
|
|
}
|
|
|
|
evolution-data-server-devel_package() {
|
|
depends="sqlite-devel mit-krb5-devel nss-devel libical-devel
|
|
libldap-devel libgdata-devel>=0.15 libsecret-devel libglib-devel
|
|
${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
vmove usr/share/vala
|
|
fi
|
|
}
|
|
}
|