initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

29
karchive/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=karchive
pkgver=5.78.0
pkgrel=1
pkgdesc='Qt addon providing access to numerous types of archives'
arch=(i686 x86_64)
url='https://community.kde.org/Frameworks'
license=(LGPL-3)
depends=(qt-base)
makedepends=(doxygen extra-cmake-modules graphviz qt-tools)
groups=(kf5)
source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
sha512sums=('a7d5285123d80d9de9845aead4a84bf93c58dc094c623c48db5cbe3048fdd0cb544ce25dea95305f5ac624abfe5de3c289cc568231faf3a01e42ae3570298ba8'
'SKIP')
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
build() {
cmake -B build -S $pkgname-$pkgver \
-DBUILD_TESTING=OFF \
-DBUILD_QCH=ON
make -C build
}
package() {
make DESTDIR="$pkgdir" -C build install
install -Dm644 $pkgname-$pkgver/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -t $pkgdir/usr/share/licenses/$pkgname
}