mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 05:09:33 -05:00
gnu: gtk-doc: Change build-system.
* gnu/packages/gtk.scm (gtk-doc) [build-system]: Change from gnu to glib-or-gtk. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
This commit is contained in:
parent
cb4d52f1f8
commit
2e0eb1c946
1 changed files with 12 additions and 12 deletions
|
@ -1742,7 +1742,7 @@ (define-public gtk-doc
|
|||
(sha256
|
||||
(base32
|
||||
"05apmwibkmn1icx05l8aw241lhymcx01zvk5i499cb150bijj7li"))))
|
||||
(build-system gnu-build-system)
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(arguments
|
||||
`(#:parallel-tests? #f
|
||||
#:phases
|
||||
|
@ -1750,16 +1750,16 @@ (define-public gtk-doc
|
|||
(add-after 'unpack 'patch-gtk-doc-scan
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "gtk-doc.xsl"
|
||||
(("http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
|
||||
(string-append (assoc-ref inputs "docbook-xsl")
|
||||
"/xml/xsl/docbook-xsl-"
|
||||
,(package-version docbook-xsl)
|
||||
"/html/chunk.xsl"))
|
||||
(("http://docbook.sourceforge.net/release/xsl/current/common/en.xml")
|
||||
(string-append (assoc-ref inputs "docbook-xsl")
|
||||
"/xml/xsl/docbook-xsl-"
|
||||
,(package-version docbook-xsl)
|
||||
"/common/en.xml")))
|
||||
(("http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
|
||||
(string-append (assoc-ref inputs "docbook-xsl")
|
||||
"/xml/xsl/docbook-xsl-"
|
||||
,(package-version docbook-xsl)
|
||||
"/html/chunk.xsl"))
|
||||
(("http://docbook.sourceforge.net/release/xsl/current/common/en.xml")
|
||||
(string-append (assoc-ref inputs "docbook-xsl")
|
||||
"/xml/xsl/docbook-xsl-"
|
||||
,(package-version docbook-xsl)
|
||||
"/common/en.xml")))
|
||||
#t))
|
||||
(add-after 'patch-gtk-doc-scan 'patch-test-out
|
||||
(lambda _
|
||||
|
@ -1768,7 +1768,7 @@ (define-public gtk-doc
|
|||
;; generator metafont outputs a lot of extra lines, this
|
||||
;; test would always fail. Disable it for now.
|
||||
(substitute* "tests/Makefile.in"
|
||||
(("empty.sh sanity.sh") "empty.sh"))
|
||||
(("empty.sh sanity.sh") "empty.sh"))
|
||||
#t))
|
||||
(add-before 'configure 'fix-docbook
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue