Date: Sunday, February 13, 2022 @ 18:44:08 Author: arojas Revision: 437131
archrelease: copy trunk to testing-x86_64 Added: kwayland/repos/testing-x86_64/ kwayland/repos/testing-x86_64/PKGBUILD (from rev 437130, kwayland/trunk/PKGBUILD) ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Copied: kwayland/repos/testing-x86_64/PKGBUILD (from rev 437130, kwayland/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2022-02-13 18:44:08 UTC (rev 437131) @@ -0,0 +1,31 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kwayland +pkgver=5.91.0 +pkgrel=1 +pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries' +arch=(x86_64) +url='https://www.kde.org' +license=(LGPL) +depends=(qt5-wayland) +makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc wayland-protocols plasma-wayland-protocols) +groups=(kf5) +source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('3efdfa6539fb0c053092ef5f178d0ea776a93a35754eefb1be348dcbd46403a8' + 'SKIP') +validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <fa...@kde.org> +options=(debug) + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_LIBEXECDIR=lib \ + -DBUILD_TESTING=OFF \ + -DBUILD_QCH=ON + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}