Date: Saturday, October 12, 2019 @ 22:19:27 Author: arojas Revision: 364767
archrelease: copy trunk to testing-x86_64 Added: syndication/repos/testing-x86_64/ syndication/repos/testing-x86_64/PKGBUILD (from rev 364766, syndication/trunk/PKGBUILD) ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Copied: syndication/repos/testing-x86_64/PKGBUILD (from rev 364766, syndication/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2019-10-12 22:19:27 UTC (rev 364767) @@ -0,0 +1,36 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> + +pkgname=syndication +pkgver=5.63.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=('e609c7f36559d6081d4ffe5c3cf995d96c620f18550f14f274d4c717423713b4' + '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 +}