gnu: xsettingsd: Add manuals.

* gnu/packages/xdisorg.scm (xsettingsd)[arguments]: Modify install phase
to include manuals.
This commit is contained in:
Brice Waegeneire 2020-12-12 22:49:48 +01:00
parent c2f49366ec
commit 6836efaeb3
No known key found for this signature in database
GPG key ID: A94903A166A18FAE

View file

@ -2484,10 +2484,13 @@ (define-public xsettingsd
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(bin (string-append out "/bin"))
(man (string-append out "/share/man/man1")))
(mkdir-p bin)
(install-file "xsettingsd" bin)
(install-file "dump_xsettings" bin)
(install-file "xsettingsd.1" man)
(install-file "dump_xsettings.1" man)
#t))))))
(home-page "https://github.com/derat/xsettingsd")
(synopsis "Xorg settings daemon")