Date: Sunday, February 13, 2022 @ 18:51:11 Author: arojas Revision: 437168
archrelease: copy trunk to testing-x86_64 Added: syndication/repos/testing-x86_64/ syndication/repos/testing-x86_64/PKGBUILD (from rev 437167, syndication/trunk/PKGBUILD) ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Copied: syndication/repos/testing-x86_64/PKGBUILD (from rev 437167, syndication/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-02-13 18:51:11 UTC (rev 437168) @@ -0,0 +1,31 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> + +pkgname=syndication +pkgver=5.91.0 +pkgrel=1 +pkgdesc='RSS/Atom parser library' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(kcodecs) +makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc) +groups=(kf5) +conflicts=(kde-syndication) +provides=(kde-syndication) +replaces=(kde-syndication) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('fe05fc898c8e5adf23b977138e8b595448805fc2d48c62579881f500ab5953b8' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> +options=(debug) + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DBUILD_TESTING=OFF \ + -DBUILD_QCH=ON + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}