mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: team/kde <bribbers@disroot.org>
|
|
|
|
# The group tag is just to easily find this APKBUILD by some scripts for automation
|
|
# group=kde-applications
|
|
pkgname=eventviews
|
|
pkgver=24.08.1
|
|
pkgrel=0
|
|
pkgdesc="Library for creating events"
|
|
# armhf blocked by extra-cmake-modules
|
|
# ppc64le, s390x, riscv64 and armv7 blocked by qt6-qtwebengine -> akonadi
|
|
# loongarch64 blocked by calendarsupport
|
|
arch="all !armhf !ppc64le !s390x !riscv64 !armv7 !loongarch64"
|
|
url="https://kontact.kde.org/"
|
|
license="GPL-2.0-or-later"
|
|
depends_dev="
|
|
akonadi-calendar-dev
|
|
akonadi-dev
|
|
calendarsupport-dev
|
|
kcalendarcore-dev
|
|
kcalutils-dev
|
|
kcodecs-dev
|
|
kcompletion-dev
|
|
kdiagram-dev
|
|
kguiaddons-dev
|
|
kholidays-dev
|
|
ki18n-dev
|
|
kiconthemes-dev
|
|
kmime-dev
|
|
kservice-dev
|
|
libkdepim-dev
|
|
qt6-qtbase-dev
|
|
"
|
|
checkdepends="xvfb-run"
|
|
makedepends="$depends_dev
|
|
doxygen
|
|
extra-cmake-modules
|
|
graphviz
|
|
samurai
|
|
"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
|
|
_repo_url="https://invent.kde.org/pim/eventviews.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/eventviews-$pkgver.tar.xz"
|
|
|
|
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() {
|
|
xvfb-run ctest --test-dir build --output-on-failure
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
sha512sums="
|
|
659a58bb0007fa7f92e95ea4d89985168f0478447db4affbe13fe97d6f578b7f119948387cc15a08ff9ec326d2a16857912b0e1d94c6454d27f3cd16838c43fe eventviews-24.08.1.tar.xz
|
|
"
|