Date: Sunday, April 16, 2023 @ 13:14:16 Author: yan12125 Revision: 1446542
archrelease: copy trunk to community-testing-x86_64 Added: xdg-desktop-portal-lxqt/repos/community-testing-x86_64/ xdg-desktop-portal-lxqt/repos/community-testing-x86_64/PKGBUILD (from rev 1446541, xdg-desktop-portal-lxqt/trunk/PKGBUILD) xdg-desktop-portal-lxqt/repos/community-testing-x86_64/keys/ ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Copied: xdg-desktop-portal-lxqt/repos/community-testing-x86_64/PKGBUILD (from rev 1446541, xdg-desktop-portal-lxqt/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2023-04-16 13:14:16 UTC (rev 1446542) @@ -0,0 +1,31 @@ +# Maintainer: Chih-Hsuan Yen <yan12...@archlinux.org> +# Modified from extra/xdg-desktop-portal-kde; original contributors: +# Contributor: Antonio Rojas <aro...@archlinux.org> + +pkgname=xdg-desktop-portal-lxqt +pkgver=0.4.0 +pkgrel=1 +pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt' +arch=(x86_64) +url='https://github.com/lxqt/xdg-desktop-portal-lxqt' +license=(LGPL) +depends=(qt5-base kwindowsystem xdg-desktop-portal libfm-qt) +makedepends=(cmake) +provides=(xdg-desktop-portal-impl) +source=("https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}) +sha256sums=('e55c6c87186ca39272efab6a3b79c418b6e16d09d8748dd0ad05165a18e7b2b0' + 'SKIP') +validpgpkeys=( + "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang <tsujan2...@gmail.com> +) + +build() { + cmake -B build -S $pkgname-$pkgver \ + -DCMAKE_INSTALL_LIBEXECDIR=lib \ + -DCMAKE_INSTALL_PREFIX=/usr + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}