Date: Saturday, April 16, 2022 @ 14:59:10
Author: yan12125
Revision: 1186714
archrelease: copy trunk to community-testing-x86_64
Added:
screengrab/repos/community-testing-x86_64/
screengrab/repos/community-testing-x86_64/PKGBUILD
(from rev 1186713, screengrab/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: screengrab/repos/community-testing-x86_64/PKGBUILD (from rev 1186713,
screengrab/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2022-04-16 14:59:10 UTC (rev 1186714)
@@ -0,0 +1,36 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: Jerome Leclanche <[email protected]>
+# Contributor: Beej <[email protected]>
+
+pkgname=screengrab
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Crossplatform tool for grabbing screenshots of your desktop."
+arch=("x86_64")
+groups=("lxqt")
+url="https://github.com/lxqt/screengrab"
+license=("GPL2")
+depends=("qt5-base" "qt5-x11extras" "kwindowsystem" "libqtxdg" "libx11"
"libxcb" "libQt5Xdg.so")
+makedepends=("cmake" "qt5-tools")
+source=(
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha256sums=('a77f7af9327be6afed3e224182096972f06a118af2225edaa56183d30e127092'
+ 'SKIP')
+validpgpkeys=(
+ '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
+}