60 lines
2.3 KiB
Bash
60 lines
2.3 KiB
Bash
# Template file for 'evolution'
|
|
pkgname=evolution
|
|
version=3.30.2
|
|
revision=2
|
|
build_style=cmake
|
|
configure_args="-DENABLE_AUTOAR=OFF -DENABLE_LIBCRYPTUI=OFF -DENABLE_GTKSPELL=OFF
|
|
-DENABLE_TEXT_HIGHLIGHT=OFF -DENABLE_PST_IMPORT=OFF
|
|
-DENABLE_WEATHER=$(vopt_if gir ON OFF)"
|
|
hostmakedepends="gnome-doc-utils gobject-introspection intltool itstool
|
|
pkg-config"
|
|
makedepends="GConf-devel NetworkManager-devel clutter-gtk-devel enchant2-devel
|
|
evolution-data-server-devel gnome-desktop-devel gtkhtml-devel libcanberra-devel
|
|
$(vopt_if gir libgweather-devel) libnotify-devel webkit2gtk-devel ytnef-devel"
|
|
depends="gnome-keyring gtkhtml"
|
|
short_desc="Integrated mail, addressbook and calendaring for GNOME"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="LGPL-2.1-or-later, LGPL-3.0-or-later, GPL-2.0-or-later"
|
|
homepage="https://wiki.gnome.org/Apps/Evolution"
|
|
changelog="https://raw.githubusercontent.com/GNOME/evolution/gnome-3-28/NEWS"
|
|
distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=b29e4308241d5678cd3514549bf920b759e06792d4c75edece148400b44c44df
|
|
shlib_provides="libevolution-calendar.so libevolution-util.so libemail-engine.so
|
|
libevolution-mail.so libevolution-shell.so"
|
|
|
|
build_options="gir"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
else
|
|
hostmakedepends+=" glib-devel"
|
|
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
|
|
}
|
|
|
|
evolution-devel_package() {
|
|
depends="GConf-devel gtkhtml-devel>=4.6.0 evolution-data-server-devel
|
|
gnome-desktop-devel ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|