Date: Sunday, February 12, 2023 @ 10:24:53 Author: arojas Revision: 468562
archrelease: copy trunk to testing-x86_64 Added: kauth/repos/testing-x86_64/ kauth/repos/testing-x86_64/PKGBUILD (from rev 468561, kauth/trunk/PKGBUILD) kauth/repos/testing-x86_64/keys/ ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Copied: kauth/repos/testing-x86_64/PKGBUILD (from rev 468561, kauth/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2023-02-12 10:24:53 UTC (rev 468562) @@ -0,0 +1,30 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kauth +pkgver=5.103.0 +pkgrel=1 +pkgdesc='Abstraction to system policy and authentication features' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(kcoreaddons polkit-qt5) +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=('cd39aea44deaa480e4c1e4a388eacb54293e8dca38e1034cdd5950edd3023d54' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_LIBEXECDIR=lib \ + -DBUILD_TESTING=OFF \ + -DBUILD_QCH=ON + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}