Date: Saturday, November 14, 2020 @ 10:42:34 Author: arojas Revision: 401071
archrelease: copy trunk to testing-x86_64 Added: frameworkintegration/repos/testing-x86_64/ frameworkintegration/repos/testing-x86_64/PKGBUILD (from rev 401070, frameworkintegration/trunk/PKGBUILD) ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Copied: frameworkintegration/repos/testing-x86_64/PKGBUILD (from rev 401070, frameworkintegration/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2020-11-14 10:42:34 UTC (rev 401071) @@ -0,0 +1,30 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=frameworkintegration +pkgver=5.76.0 +pkgrel=1 +pkgdesc='Framework providing components to allow applications to integrate with a KDE Workspace' +arch=(x86_64) +url='https://community.kde.org/Frameworks' +license=(LGPL) +depends=(knewstuff) +makedepends=(extra-cmake-modules appstream-qt packagekit-qt5) +optdepends=('appstream-qt: dependency resolving via AppStream' 'packagekit-qt5: dependency resolving via AppStream') +groups=(kf5) +source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('7ac6c070190ab4c0c2ac15a921886ed7f3b70d6a0b7c41766d21a913e9f086fb' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_LIBEXECDIR=lib \ + -DBUILD_TESTING=OFF + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}