Date: Saturday, September 12, 2020 @ 19:43:40 Author: arojas Revision: 395878
archrelease: copy trunk to testing-x86_64 Added: kauth/repos/testing-x86_64/ kauth/repos/testing-x86_64/PKGBUILD (from rev 395877, kauth/trunk/PKGBUILD) ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Copied: kauth/repos/testing-x86_64/PKGBUILD (from rev 395877, kauth/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-09-12 19:43:40 UTC (rev 395878) @@ -0,0 +1,31 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kauth +pkgver=5.74.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 python-pyqt5 doxygen sip) +optdepends=('python-pyqt5: for the Python bindings') +groups=(kf5) +source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('e0aa6206c4bf9220d1c4882b8b77f9cf9202646b64b8a249a60a9d4b272e3bfc' + '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 +}