Date: Sunday, February 12, 2023 @ 10:26:04 Author: arojas Revision: 468567
archrelease: copy trunk to testing-x86_64 Added: kguiaddons/repos/testing-x86_64/ kguiaddons/repos/testing-x86_64/PKGBUILD (from rev 468566, kguiaddons/trunk/PKGBUILD) kguiaddons/repos/testing-x86_64/keys/ ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Copied: kguiaddons/repos/testing-x86_64/PKGBUILD (from rev 468566, kguiaddons/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2023-02-12 10:26:04 UTC (rev 468567) @@ -0,0 +1,29 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kguiaddons +pkgver=5.103.0 +pkgrel=1 +pkgdesc='Addons to QtGui' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(qt5-x11extras qt5-wayland) +makedepends=(extra-cmake-modules clang doxygen qt5-tools qt5-doc plasma-wayland-protocols) +groups=(kf5) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('e63280fdefc4d82b42fc7b8e8e30c0b92e05538b00fb31086683019cc2d5b232' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DBUILD_TESTING=OFF \ + -DBUILD_QCH=ON + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}