mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 21:04:46 +02:00
67 lines
1.7 KiB
Text
67 lines
1.7 KiB
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
maintainer="team/kde <bribbers@disroot.org>"
|
|
pkgname=akonadiconsole
|
|
pkgver=25.04.0
|
|
pkgrel=0
|
|
# s390x, ppc64le, armhf and riscv64 blocked by akonadi
|
|
# ppc64le, armv7 and loongarch64 blocked by calendarsupport
|
|
#arch="all !armhf !s390x !ppc64le !riscv64 !armv7 !loongarch64"
|
|
arch="" # blocked by xapian-bindings -> py3-sphinx-autobuild -> uvicorn
|
|
url="https://kontact.kde.org/"
|
|
pkgdesc="Application for debugging Akonadi Resources"
|
|
license="GPL-2.0-or-later AND GFDL-1.2-only"
|
|
makedepends="
|
|
akonadi-contacts-dev
|
|
akonadi-dev
|
|
akonadi-search-dev
|
|
calendarsupport-dev
|
|
extra-cmake-modules
|
|
kcalendarcore-dev
|
|
kcompletion-dev
|
|
kcompletion-dev
|
|
kconfig-dev
|
|
kconfigwidgets-dev
|
|
kcontacts-dev
|
|
kcrash-dev
|
|
kdbusaddons-dev
|
|
kdoctools-dev
|
|
ki18n-dev
|
|
kio-dev
|
|
kitemmodels-dev
|
|
kitemviews-dev
|
|
kmime-dev
|
|
ktextwidgets-dev
|
|
kwidgetsaddons-dev
|
|
kxmlgui-dev
|
|
libkdepim-dev
|
|
messagelib-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
xapian-bindings
|
|
"
|
|
checkdepends="xvfb-run"
|
|
_repo_url="https://invent.kde.org/pim/akonadiconsole.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/akonadiconsole-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
xvfb-run ctest --test-dir build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
df79fe5130679d8ab60d495b9eef5ea068dae448f02966d50b245ca361acc5562822159455ab581a6ec02d5d4cbccd1db06df5b38ecd0a21016fa249775fb8b1 akonadiconsole-25.04.0.tar.xz
|
|
"
|