Date: Saturday, April 11, 2020 @ 09:47:58 Author: arojas Revision: 380095
archrelease: copy trunk to testing-x86_64 Added: syndication/repos/testing-x86_64/ syndication/repos/testing-x86_64/PKGBUILD (from rev 380094, syndication/trunk/PKGBUILD) ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Copied: syndication/repos/testing-x86_64/PKGBUILD (from rev 380094, syndication/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-04-11 09:47:58 UTC (rev 380095) @@ -0,0 +1,36 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> + +pkgname=syndication +pkgver=5.69.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=('eb38fbc7749efff7a06ee1454c0aaf4e0751bda2eaaf2587560e7d810f02972e' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ + -DBUILD_TESTING=OFF \ + -DBUILD_QCH=ON + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}