Date: Saturday, April 25, 2020 @ 03:15:25
Author: yan12125
Revision: 619764
archrelease: copy trunk to community-staging-x86_64
Added:
lxqt-policykit/repos/community-staging-x86_64/
lxqt-policykit/repos/community-staging-x86_64/PKGBUILD
(from rev 619763, lxqt-policykit/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: lxqt-policykit/repos/community-staging-x86_64/PKGBUILD (from rev
619763, lxqt-policykit/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-04-25 03:15:25 UTC (rev 619764)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+
+pkgname=lxqt-policykit
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="The LXQt policykit authentication agent"
+arch=("x86_64")
+groups=("lxqt")
+url="https://lxqt.org"
+license=("LGPL2.1")
+depends=("liblxqt" "polkit-qt5")
+makedepends=("cmake" "lxqt-build-tools")
+source=(
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha256sums=('e2e6b27ce0e3611937c2ecc8525a18541ed8758a9dccea62357f1d427b4dec4f'
+ '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
+}