Date: Sunday, April 16, 2023 @ 13:11:07 Author: yan12125 Revision: 1446526
archrelease: copy trunk to community-testing-x86_64 Added: lxqt-globalkeys/repos/community-testing-x86_64/ lxqt-globalkeys/repos/community-testing-x86_64/PKGBUILD (from rev 1446525, lxqt-globalkeys/trunk/PKGBUILD) lxqt-globalkeys/repos/community-testing-x86_64/keys/ ----------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) Copied: lxqt-globalkeys/repos/community-testing-x86_64/PKGBUILD (from rev 1446525, lxqt-globalkeys/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2023-04-16 13:11:07 UTC (rev 1446526) @@ -0,0 +1,33 @@ +# Maintainer: Chih-Hsuan Yen <yan12...@archlinux.org> +# Contributor: Jerome Leclanche <jer...@leclan.ch> + +pkgname=lxqt-globalkeys +pkgver=1.3.0 +pkgrel=1 +pkgdesc="LXQt daemon and library for global keyboard shortcuts registration." +arch=("x86_64") +groups=("lxqt") +url="https://github.com/lxqt/$pkgname" +license=("LGPL2.1") +depends=("liblxqt") +makedepends=("lxqt-build-tools") +source=( + "https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc} +) +sha256sums=('c7c35effbec7b1900935bc9abd87b52ab92e33d1001c5e8697906357a83f759e' + 'SKIP') +validpgpkeys=( + "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jer...@leclan.ch> + "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <aga...@siduction.org> + "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang <tsujan2...@gmail.com> +) + +build() { + cmake -B build -S "$srcdir/$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}