mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add mate-user-guide.
* gnu/packages/mate.scm (mate-user-guide): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
acd7bf4b5e
commit
75282ec168
1 changed files with 40 additions and 0 deletions
|
@ -754,6 +754,46 @@ (define-public marco
|
||||||
for use with MATE or as a standalone window manager.")
|
for use with MATE or as a standalone window manager.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public mate-user-guide
|
||||||
|
(package
|
||||||
|
(name "mate-user-guide")
|
||||||
|
(version "1.18.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://pub.mate-desktop.org/releases/"
|
||||||
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0f3b46r9a3cywm7rpj08xlkfnlfr9db58xfcpix8i33qp50fxqmb"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'adjust-desktop-file
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let* ((yelp (assoc-ref inputs "yelp")))
|
||||||
|
(substitute* "mate-user-guide.desktop.in.in"
|
||||||
|
(("yelp")
|
||||||
|
(string-append yelp "/bin/yelp"))))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("intltool" ,intltool)
|
||||||
|
("gettext" ,gettext-minimal)
|
||||||
|
("yelp-tools" ,yelp-tools)
|
||||||
|
("yelp-xsl" ,yelp-xsl)))
|
||||||
|
(inputs
|
||||||
|
`(("yelp" ,yelp)))
|
||||||
|
(home-page "https://mate-desktop.org/")
|
||||||
|
(synopsis "User Documentation for Mate software")
|
||||||
|
(description
|
||||||
|
"MATE User Guide is a collection of documentation which details
|
||||||
|
general use of the MATE Desktop environment. Topics covered include
|
||||||
|
sessions, panels, menus, file management, and preferences.")
|
||||||
|
(license (list license:fdl1.1+ license:gpl2+))))
|
||||||
|
|
||||||
(define-public mate
|
(define-public mate
|
||||||
(package
|
(package
|
||||||
(name "mate")
|
(name "mate")
|
||||||
|
|
Loading…
Reference in a new issue