blob: 26fb9610b76b7d126db9f6a409709e075d3bc012 (
plain) (
tree)
|
|
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=akonadi-mime
pkgver=22.04.2
pkgrel=0
pkgdesc="Libraries to implement basic MIME message handling"
url="https://www.kde.org/"
arch="all"
license="LGPL-2.1+"
depends=""
depends_dev="qt5-qtbase-dev akonadi-dev kio-dev kmime-dev"
makedepends="$depends_dev cmake extra-cmake-modules libxslt-dev kdbusaddons-dev
kconfig-dev kitemmodels-dev kxmlgui-dev shared-mime-info"
subpackages="$pkgname-dev $pkgname-lang"
source="https://download.kde.org/stable/release-service/$pkgver/src/akonadi-mime-$pkgver.tar.xz"
build() {
if [ "$CBUILD" != "$CHOST" ]; then
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
fi
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_SHARED_LIBS=True \
-DCMAKE_BUILD_TYPE=RelWithDebugInfo \
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
-DCMAKE_C_FLAGS="$CFLAGS" \
${CMAKE_CROSSOPTS} .
make
}
check() {
# The mailserializerplugintest test requires kdepim-runtime to be
# present on the system. Otherwise, Akonadi does not know how to
# convert a QByteArray of message/rfc822 to KMime::Message. This
# is a circular dependency, because kdepim-runtime requires amime
# so we must skip this test.
# Attribute tests all require X11.
CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E 'mailserializerplugintest|attributetest'
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="4c55414cb4fb756890b554981facf0a37aecc9ff43353605e4ac44e826f347b46814ec81afdbfec8a05d25a7af0efb1a5bb0b31752bbf3996242e3b8a6b1afdb akonadi-mime-22.04.2.tar.xz"
|