# include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=ktimer pkgver=${_kdever} pkgrel=1 arch=('x86_64') pkgdesc="Little tool to execute programs after some time" url="https://apps.kde.org/ktimer/" license=('GPL' 'LGPL' 'FDL') depends=('ki18n6' 'kwidgetsaddons6' 'kio6' 'kdbusaddons6' 'knotifications6' 'kconfigwidgets6' 'kstatusnotifieritem' 'qt6-5compat') makedepends=('extra-cmake-modules' 'kdoctools6') groups=('kde' 'kde-utils' 'kde-uninstall' 'utils') source=($_mirror/${pkgname}-$_kdever.tar.xz) md5sums=(`grep ${pkgname}-$_kdever.tar.xz ../kde-sc.md5 | cut -d" " -f1`) build() { cmake -B build -S ${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_INSTALL_DIR=lib \ -DBUILD_TESTING=OFF cmake --build build } package() { DESTDIR=${pkgdir} cmake --install build }