gnu: libgsf: Enable documentation.
* gnu/packages/gnome.scm (libgsf) [outputs]: New output "doc". [arguments]<#:configure-flags>[--with-html-dir]: New flag. [native-inputs]: Add docbook-xml. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
This commit is contained in:
parent
0ba9fee14d
commit
6f779ac5d3
1 changed files with 17 additions and 3 deletions
|
@ -3275,7 +3275,7 @@ (define-public libgsf
|
|||
(base32
|
||||
"0kbpp9ksl7977xiga37sk1gdw1r039v6zviqznl7alvvg39yp26i"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(outputs '("out" "bin"))
|
||||
(outputs '("out" "bin" "doc"))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
|
@ -3293,10 +3293,24 @@ (define-public libgsf
|
|||
,(version-major
|
||||
(package-version gobject-introspection))
|
||||
".0")
|
||||
(string-append "--with-html-dir="
|
||||
(assoc-ref %outputs "doc")
|
||||
"/share/gtk-doc/html")
|
||||
"--with-zlib"
|
||||
"--with-bz2")))
|
||||
"--with-bz2")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-docbook-xml
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(with-directory-excursion "doc"
|
||||
(substitute* "gsf-docs.xml"
|
||||
(("http://www.oasis-open.org/docbook/xml/4.5/")
|
||||
(string-append (assoc-ref inputs "docbook-xml")
|
||||
"/xml/dtd/docbook/"))))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
`(("docbook-xml" ,docbook-xml)
|
||||
("gettext" ,gettext-minimal)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("perl" ,perl)
|
||||
("perl-xml-parser" ,perl-xml-parser)
|
||||
|
|
Loading…
Reference in a new issue