Date: Saturday, June 13, 2020 @ 18:39:58 Author: arojas Revision: 389152
archrelease: copy trunk to testing-x86_64 Added: syndication/repos/testing-x86_64/ syndication/repos/testing-x86_64/PKGBUILD (from rev 389151, syndication/trunk/PKGBUILD) ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Copied: syndication/repos/testing-x86_64/PKGBUILD (from rev 389151, syndication/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-06-13 18:39:58 UTC (rev 389152) @@ -0,0 +1,30 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> + +pkgname=syndication +pkgver=5.71.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=('c515fd48d3736b55c8e7990c72471bfddd55363c4bcb049713be741eaa7b07e0' + '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 +}