mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gtk-doc: Enable help.
* gnu/packages/gtk.scm (gtk-doc) [outputs]: New output 'help'. [arguments]<#:configure-flags>[--with-help-dir]: New flag. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
This commit is contained in:
parent
de40b56942
commit
cd01e36d8a
1 changed files with 5 additions and 1 deletions
|
@ -1743,6 +1743,7 @@ (define-public gtk-doc
|
||||||
(base32
|
(base32
|
||||||
"0z4h1dggpimygdp719l457jvqilps4qcfpk31jmj3jqpzcsg03ny"))))
|
"0z4h1dggpimygdp719l457jvqilps4qcfpk31jmj3jqpzcsg03ny"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
|
(outputs '("out" "help"))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -1799,7 +1800,10 @@ (define-public gtk-doc
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list (string-append "--with-xml-catalog="
|
(list (string-append "--with-xml-catalog="
|
||||||
(assoc-ref %build-inputs "docbook-xml")
|
(assoc-ref %build-inputs "docbook-xml")
|
||||||
"/xml/dtd/docbook/catalog.xml"))))
|
"/xml/dtd/docbook/catalog.xml")
|
||||||
|
(string-append "--with-help-dir="
|
||||||
|
(assoc-ref %outputs "help")
|
||||||
|
"/share/help"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
|
|
Loading…
Reference in a new issue