mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-09 11:35:43 +02:00
44 lines
1.1 KiB
Text
44 lines
1.1 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-frameworks
|
|
maintainer="team/kde <bribbers@disroot.org>"
|
|
pkgname=kidletime
|
|
pkgver=6.13.0
|
|
pkgrel=0
|
|
pkgdesc="Monitoring user activity"
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://community.kde.org/Frameworks"
|
|
license="LGPL-2.0-only"
|
|
makedepends="
|
|
doxygen
|
|
extra-cmake-modules
|
|
plasma-wayland-protocols
|
|
qt6-qttools-dev
|
|
qt6-qtwayland-dev
|
|
samurai
|
|
wayland-dev
|
|
wayland-protocols
|
|
"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
_repo_url="https://invent.kde.org/frameworks/kidletime.git"
|
|
source="https://download.kde.org/stable/frameworks/${pkgver%.*}/kidletime-$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 \
|
|
-DBUILD_QCH=ON
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
87f562d535b01763d34db20f90b263011b07cdd6d1dcc1c9aa0ce8ccf2140bfb8b17bd6c2159a212c0d04edcd35dc430bb7e2a4ff832b6656eb5635537db2932 kidletime-6.13.0.tar.xz
|
|
"
|