aports/community/kdf/APKBUILD
2024-09-13 13:50:51 +00:00

53 lines
1.2 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=kdf
pkgver=24.08.1
pkgrel=0
# armhf blocked by extra-cmake-modules
arch="all !armhf"
url="https://kde.org/applications/system/org.kde.kdf"
pkgdesc="View disk usage"
license="GPL-2.0-or-later"
makedepends="
extra-cmake-modules
kcmutils-dev
kconfigwidgets-dev
kcoreaddons-dev
kdoctools-dev
ki18n-dev
kiconthemes-dev
kio-dev
knotifications-dev
kstatusnotifieritem-dev
kwidgetsaddons-dev
kxmlgui-dev
qt6-qtbase-dev
samurai
"
subpackages="$pkgname-doc $pkgname-lang"
_repo_url="https://invent.kde.org/utilities/kdf.git"
source="https://download.kde.org/stable/release-service/$pkgver/src/kdf-$pkgver.tar.xz"
build() {
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
}
check() {
ctest --test-dir build --output-on-failure
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
sha512sums="
35487c67a3e01155f81f7702cf4a5bdc578a45732085266589d1b6cff5ada1991249833d4bb676492e294cef27fbc7ec4d0c8e76fafb6c80df67c24e611be370 kdf-24.08.1.tar.xz
"