Date: Thursday, February 28, 2019 @ 14:18:04 Author: yan12125 Revision: 437051
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 437050, lxqt-session/trunk/PKGBUILD) ----------+ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) Copied: lxqt-session/repos/community-testing-x86_64/PKGBUILD (from rev 437050, lxqt-session/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2019-02-28 14:18:04 UTC (rev 437051) @@ -0,0 +1,40 @@ +# Maintainer: Jerome Leclanche <jer...@leclan.ch> + +pkgname=lxqt-session +pkgver=0.14.1 +pkgrel=1 +pkgdesc="The LXQt session manager" +arch=("x86_64") +groups=("lxqt") +url="https://lxqt.org" +license=("LGPL2.1") +depends=("liblxqt" "xdg-user-dirs" "libx11" "udev" "kwindowsystem") +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=('fe6daabbd5f1ce2d8aa47c0ecc4e6656f2e59b66c59bd5f76e668cb16bdc2286' + 'SKIP') +validpgpkeys=( + "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jer...@leclan.ch> + "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <aga...@siduction.org> +) + + +build() { + mkdir -p build + cd build + cmake "$srcdir/$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}