mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-04 10:04:36 +02:00
47 lines
1.3 KiB
Text
47 lines
1.3 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=ktimer
|
|
pkgver=25.04.0
|
|
pkgrel=0
|
|
pkgdesc="A little tool to execute programs after some time"
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://kde.org/applications/utilities/org.kde.ktimer"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
kconfig-dev
|
|
kdbusaddons-dev
|
|
kdoctools-dev
|
|
ki18n-dev
|
|
kio-dev
|
|
knotifications-dev
|
|
kstatusnotifieritem-dev
|
|
kwidgetsaddons-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
"
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
_repo_url="https://invent.kde.org/utilities/ktimer.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/ktimer-$pkgver.tar.xz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DKF_IGNORE_PLATFORM_CHECK=ON # does not have metainfo.yaml
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
09df0c4457d551faefa69525b206a2803f5949192ee43b96b6f8f379ac0471517e8a4cbaf4e846fec10b70313d2ee45a91e9fd3519411c8bc4fa4f126071d6b3 ktimer-25.04.0.tar.xz
|
|
"
|