50 lines
1.6 KiB
Bash
50 lines
1.6 KiB
Bash
# Template file for 'akonadi5'
|
|
pkgname=akonadi5
|
|
version=21.08.1
|
|
revision=1
|
|
wrksrc="akonadi-${version}"
|
|
build_style=cmake
|
|
build_helper="qemu"
|
|
hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools python3
|
|
shared-mime-info libxslt pkg-config gettext qt5-tools-devel
|
|
kconfig kcoreaddons"
|
|
makedepends="qt5-devel qt5-plugin-mysql qt5-plugin-odbc qt5-plugin-pgsql
|
|
qt5-plugin-sqlite qt5-plugin-tds kcompletion-devel kconfigwidgets-devel
|
|
kdbusaddons-devel kiconthemes-devel kitemmodels-devel kio-devel sqlite-devel
|
|
kaccounts-integration-devel libaccounts-qt5-devel qt5-tools-devel"
|
|
depends="shared-mime-info kaccounts-providers"
|
|
checkdepends="dbus ${depends}"
|
|
short_desc="PIM layer providing an asynchronous API to access PIM data"
|
|
maintainer="John <me@johnnynator.dev>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://community.kde.org/KDE_PIM/Akonadi"
|
|
distfiles="${KDE_SITE}/release-service/${version}/src/akonadi-${version}.tar.xz"
|
|
checksum=a6d588534579dc6dc4e19399215a1c9e6b802591cdd2165f064359deebd04b09
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
fi
|
|
|
|
pre_configure() {
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
vsed -e "s;^\(target_link_libraries(.*\);\1 atomic;" -i src/server/CMakeLists.txt
|
|
fi
|
|
}
|
|
|
|
do_check() {
|
|
# failing tests are disabled - sqlite tests hang on futex
|
|
cd build
|
|
dbus-run-session ctest -E \
|
|
"(akonadixml-xmldocument|mimetypechecker|AkonadiControl-agenttype|.*sqlite.*)test"
|
|
}
|
|
|
|
akonadi5-devel_package() {
|
|
short_desc+=" - development"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/qt5/mkspecs
|
|
vmove usr/lib/cmake
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|