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

30
kitemviews/PKGBUILD Normal file
View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=kitemviews
pkgver=5.78.0
pkgrel=2
pkgdesc='Widget addons for Qt Model/View'
arch=(i686 x86_64)
url='https://community.kde.org/Frameworks'
license=(LGPL-2)
depends=(qt-base)
optdepends=('python-pyqt: for the Python bindings')
makedepends=(doxygen extra-cmake-modules graphviz python-pyqt qt-tools sip)
groups=(kf5)
source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
sha512sums=('afa5773e8e69e44dda0aa355335037aff41bd3100dface8db6b97418a20abcd2b384f34717dd68af91bafe95d3c6965288e1273312c78db539439e07496ac7c2'
'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/LGPL-2.0-or-later.txt -t $pkgdir/usr/share/licenses/$pkgname
}