guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/11: gnu: Add lxqt-globalkeys.


From: ???
Subject: 01/11: gnu: Add lxqt-globalkeys.
Date: Wed, 24 Oct 2018 10:38:33 -0400 (EDT)

iyzsong pushed a commit to branch master
in repository guix.

commit fab3484657e4728496d39bb9d3518ea19412e1cf
Author: Meiyo Peng <address@hidden>
Date:   Thu Oct 18 10:55:46 2018 +0800

    gnu: Add lxqt-globalkeys.
    
    * gnu/packages/lxqt.scm (lxqt-globalkeys): New variable.
    
    Signed-off-by: 宋文武 <address@hidden>
---
 gnu/packages/lxqt.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm
index b45d21c..a270aff 100644
--- a/gnu/packages/lxqt.scm
+++ b/gnu/packages/lxqt.scm
@@ -197,6 +197,50 @@ itself as well as other components maintained by the LXQt 
project.")
     (home-page "https://lxqt.org";)
     (license lgpl2.1+)))
 
+(define-public lxqt-globalkeys
+  (package
+    (name "lxqt-globalkeys")
+    (version "0.13.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/lxqt/"; name 
"/releases/download/"
+                           version "/" name "-" version ".tar.xz"))
+       (sha256
+        (base32 "1gyvcjbhi7zpvgz1sf773dv9gc35hx5fz023njp9r4vl0dpcavgd"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("kwindowsystem" ,kwindowsystem)
+       ("liblxqt" ,liblxqt)
+       ("libqtxdg" ,libqtxdg)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
+       ("qtx11extras" ,qtx11extras)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("qttools" ,qttools)
+       ("lxqt-build-tools" ,lxqt-build-tools)))
+    (arguments
+     '(#:tests? #f                      ; no tests
+       #:configure-flags
+       ;; TODO: prefetch translations files from 'lxqt-l10n'.
+       '("-DPULL_TRANSLATIONS=NO")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-source
+           (lambda _
+             (substitute* '("autostart/CMakeLists.txt"
+                            "xdg/CMakeLists.txt")
+               (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
+                "DESTINATION \"${CMAKE_INSTALL_PREFIX}/etc/xdg"))
+             #t)))))
+    (home-page "https://lxqt.org/";)
+    (synopsis "Daemon used to register global keyboard shortcuts")
+    (description "lxqt-globalkeys is providing tools to set global keyboard
+shortcuts in LXQt sessions, that is shortcuts which apply to the LXQt session
+as a whole and are not limited to distinct applications.")
+    (license lgpl2.1+)))
+
 (define-public lxqt-session
   (package
     (name "lxqt-session")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]