# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com > pkgname=kalk-git pkgver=22.06.r7.g3aeecc7 pkgrel=1 pkgdesc="Kalk is a powerful cross-platfrom calculator application built with the Kirigami framework" arch=(x86_64 i686 arm armv6h armv7h aarch64) url="https://invent.kde.org/plasma-mobile/kalk" license=('GPL3') depends=('ki18n' 'kconfig' 'kcoreaddons' 'knotifications' 'kirigami2' 'kunitconversion' 'kdbusaddons' 'plasma-framework' 'gmp' 'mpfr' 'qt5-feedback') makedepends=('git' 'qt5-tools' 'qt5-svg' 'extra-cmake-modules') provides=('kalk') conflicts=('kalk') source=("git+${url}.git") sha256sums=('SKIP') pkgver() { cd "${pkgname%-git}" ( set -o pipefail git describe --long --tags --first-parent --match 'v[0-9][0-9.][0-9.]*' | \ sed 's=^v==;s=^\([0-9][0-9.]*\)-\([a-zA-Z]\+\)=\1\2=;s=\([0-9]\+-g\)=r\1=;s=-=.=g' ) } build() { cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build -S "${pkgname%-git}" cmake --build build --config RelWithDebInfo } package() { DESTDIR="${pkgdir}" cmake --install build --config RelWithDebInfo }