Date: Thursday, November 5, 2020 @ 15:10:39
Author: yan12125
Revision: 743190
archrelease: copy trunk to community-staging-x86_64
Added:
lxqt-globalkeys/repos/community-staging-x86_64/
lxqt-globalkeys/repos/community-staging-x86_64/PKGBUILD
(from rev 743189, lxqt-globalkeys/trunk/PKGBUILD)
----------+
PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
Copied: lxqt-globalkeys/repos/community-staging-x86_64/PKGBUILD (from rev
743189, lxqt-globalkeys/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-11-05 15:10:39 UTC (rev 743190)
@@ -0,0 +1,37 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=lxqt-globalkeys
+pkgver=0.16.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"
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc"
+)
+sha256sums=('9245d93a98960eee655f87ee9c3bb839580a7e6589c8540d0af73489eff1d1ed'
+ 'SKIP')
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche
<[email protected]>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida
<[email protected]>
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+build() {
+ mkdir -p build
+ cd build
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}