mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 13:19:40 -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
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05apmwibkmn1icx05l8aw241lhymcx01zvk5i499cb150bijj7li"))))
|
"05apmwibkmn1icx05l8aw241lhymcx01zvk5i499cb150bijj7li"))))
|
||||||
(build-system gnu-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:parallel-tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -1750,16 +1750,16 @@ (define-public gtk-doc
|
||||||
(add-after 'unpack 'patch-gtk-doc-scan
|
(add-after 'unpack 'patch-gtk-doc-scan
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "gtk-doc.xsl"
|
(substitute* "gtk-doc.xsl"
|
||||||
(("http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
|
(("http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl")
|
||||||
(string-append (assoc-ref inputs "docbook-xsl")
|
(string-append (assoc-ref inputs "docbook-xsl")
|
||||||
"/xml/xsl/docbook-xsl-"
|
"/xml/xsl/docbook-xsl-"
|
||||||
,(package-version docbook-xsl)
|
,(package-version docbook-xsl)
|
||||||
"/html/chunk.xsl"))
|
"/html/chunk.xsl"))
|
||||||
(("http://docbook.sourceforge.net/release/xsl/current/common/en.xml")
|
(("http://docbook.sourceforge.net/release/xsl/current/common/en.xml")
|
||||||
(string-append (assoc-ref inputs "docbook-xsl")
|
(string-append (assoc-ref inputs "docbook-xsl")
|
||||||
"/xml/xsl/docbook-xsl-"
|
"/xml/xsl/docbook-xsl-"
|
||||||
,(package-version docbook-xsl)
|
,(package-version docbook-xsl)
|
||||||
"/common/en.xml")))
|
"/common/en.xml")))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'patch-gtk-doc-scan 'patch-test-out
|
(add-after 'patch-gtk-doc-scan 'patch-test-out
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -1768,7 +1768,7 @@ (define-public gtk-doc
|
||||||
;; generator metafont outputs a lot of extra lines, this
|
;; generator metafont outputs a lot of extra lines, this
|
||||||
;; test would always fail. Disable it for now.
|
;; test would always fail. Disable it for now.
|
||||||
(substitute* "tests/Makefile.in"
|
(substitute* "tests/Makefile.in"
|
||||||
(("empty.sh sanity.sh") "empty.sh"))
|
(("empty.sh sanity.sh") "empty.sh"))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'configure 'fix-docbook
|
(add-before 'configure 'fix-docbook
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue