Date: Sunday, April 16, 2023 @ 13:12:41
Author: yan12125
Revision: 1446534
archrelease: copy trunk to community-testing-x86_64
Added:
lxqt-session/repos/community-testing-x86_64/
lxqt-session/repos/community-testing-x86_64/PKGBUILD
(from rev 1446533, lxqt-session/trunk/PKGBUILD)
lxqt-session/repos/community-testing-x86_64/keys/
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: lxqt-session/repos/community-testing-x86_64/PKGBUILD (from rev 1446533,
lxqt-session/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-04-16 13:12:41 UTC (rev 1446534)
@@ -0,0 +1,38 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: Jerome Leclanche <[email protected]>
+
+pkgname=lxqt-session
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="The LXQt session manager"
+arch=("x86_64")
+groups=("lxqt")
+url="https://github.com/lxqt/$pkgname"
+license=("LGPL2.1")
+depends=("liblxqt" "qtxdg-tools" "xdg-user-dirs" "libx11" "udev"
"kwindowsystem" "libQt5Xdg.so" "procps")
+makedepends=("cmake" "lxqt-build-tools")
+optdepends=(
+ "breeze-icons: Default icon theme"
+ "oxygen-icons: Alternative icon theme"
+ "sddm: The recommended display manager"
+)
+source=(
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha256sums=('54d435116afee8650902da774be855b7dec7042331246ead77bcd78423b64575'
+ 'SKIP')
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche
<[email protected]>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida
<[email protected]>
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+build() {
+ cmake -S "$srcdir/$pkgname-$pkgver" -B build \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}