Date: Sunday, February 12, 2023 @ 10:25:50 Author: arojas Revision: 468566
archrelease: copy trunk to testing-x86_64 Added: kcompletion/repos/testing-x86_64/ kcompletion/repos/testing-x86_64/PKGBUILD (from rev 468565, kcompletion/trunk/PKGBUILD) kcompletion/repos/testing-x86_64/keys/ ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Copied: kcompletion/repos/testing-x86_64/PKGBUILD (from rev 468565, kcompletion/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2023-02-12 10:25:50 UTC (rev 468566) @@ -0,0 +1,29 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kcompletion +pkgver=5.103.0 +pkgrel=1 +pkgdesc='Text completion helpers and widgets' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(kwidgetsaddons kconfig) +makedepends=(extra-cmake-modules qt5-tools qt5-doc clang doxygen) +groups=(kf5) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('d02374cba2bb3da774a938ef72744282af80a6c63851baa5825af173c7cb764f' + '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 +}