mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-24 15:01:49 +01:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
# 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=kbackup
|
|
pkgver=24.12.2
|
|
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"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
b79e8528c98672276443230092b302149fee5467bb4570030d51d4fa207bd94f8ea02cff726cda7376300e498ac160df1c1d573873bf14c4122cbd209023b5e1 kbackup-24.12.2.tar.xz
|
|
"
|