Date: Saturday, May 13, 2023 @ 21:02:55 Author: arojas Revision: 477724
archrelease: copy trunk to testing-x86_64 Added: kwallet/repos/testing-x86_64/ kwallet/repos/testing-x86_64/PKGBUILD (from rev 477723, kwallet/trunk/PKGBUILD) kwallet/repos/testing-x86_64/keys/ ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Copied: kwallet/repos/testing-x86_64/PKGBUILD (from rev 477723, kwallet/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2023-05-13 21:02:55 UTC (rev 477724) @@ -0,0 +1,32 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kwallet +pkgver=5.106.0 +pkgrel=1 +pkgdesc='Secure and unified container for user passwords' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(knotifications kiconthemes kservice gpgme qca-qt5) +makedepends=(extra-cmake-modules kdoctools boost doxygen qt5-tools qt5-doc) +optdepends=('kwalletmanager: Configuration GUI') +provides=(org.freedesktop.secrets) +replaces=(kwallet-secrets) +groups=(kf5) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('1495def290d19ca4c5704c93b64edada35bc6d7e11d5519c44538876425b55d8' + '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 +}