mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 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=kbackup
|
|
pkgver=24.08.1
|
|
pkgrel=0
|
|
# armhf blocked by extra-cmake-modules
|
|
arch="all !armhf"
|
|
url="https://kde.org/applications/utilities/org.kde.kbackup"
|
|
pkgdesc="An application which lets you back up your data in a simple, user friendly way"
|
|
license="GPL-2.0-only"
|
|
makedepends="
|
|
extra-cmake-modules
|
|
karchive-dev
|
|
kdoctools-dev
|
|
ki18n-dev
|
|
kiconthemes-dev
|
|
kio-dev
|
|
knotifications-dev
|
|
kstatusnotifieritem-dev
|
|
kwidgetsaddons-dev
|
|
kxmlgui-dev
|
|
libarchive-dev
|
|
qt6-qtbase-dev
|
|
samurai
|
|
shared-mime-info
|
|
"
|
|
subpackages="$pkgname-doc $pkgname-lang"
|
|
_repo_url="https://invent.kde.org/utilities/kbackup.git"
|
|
source="https://download.kde.org/stable/release-service/$pkgver/src/kbackup-$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="
|
|
8fdd7b01e0a6fb90501f3aa7984a694b11f5073dc9316a009fd0b55d85aa175f281f8c6c3a851209060ba9ca0eac033dcdcf2b84fddd5c14689a2c2f77549d5f kbackup-24.08.1.tar.xz
|
|
"
|