aports/community/kcalendarcore/APKBUILD
2023-04-08 14:38:07 +02:00

40 lines
1.3 KiB
Plaintext

# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=kcalendarcore
pkgver=5.105.0
pkgrel=0
pkgdesc="The KDE calendar access library"
options="!check" # RecursOn-ConnectDaily(2|3|6) make the builders stuck
arch="all !armhf" # armhf blocked by extra-cmake-modules
url="https://community.kde.org/Frameworks"
license="LGPL-2.0-or-later"
depends_dev="qt5-qtbase-dev libical-dev"
makedepends="$depends_dev extra-cmake-modules doxygen qt5-qttools-dev samurai"
source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kcalendarcore-$pkgver.tar.xz"
subpackages="$pkgname-dev $pkgname-doc"
replaces="kcalcore"
build() {
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_QCH=ON
cmake --build build
}
check() {
cd build
# testrecurtodo, testreadrecurrenceid, testicaltimezones, testmemorycalendar and testtimesininterval are broken
CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "test(recurtodo|readrecurrenceid|icaltimezones|memorycalendar|timesininterval)"
}
package() {
DESTDIR="$pkgdir" cmake --build build --target install
}
sha512sums="
df5caf474ec541a91980582f8912190a8d2b8de4b2c69ef3634ee1b7e8d9a23fb2dc359c74cbb003a11d13050b398338c24ce50e47b0f9eb2283cae82ef03002 kcalendarcore-5.105.0.tar.xz
"