mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: libgsf: Remove patch-docbook-xml phase.
* gnu/packages/gnome.scm (libgsf) [arguments]: Remove patch-docbook-xml phase.
This commit is contained in:
parent
87e7c6dcf5
commit
a621b527ac
1 changed files with 18 additions and 28 deletions
|
@ -3425,34 +3425,24 @@ (define-public libgsf
|
|||
(build-system glib-or-gtk-build-system)
|
||||
(outputs '("out" "bin" "doc"))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list
|
||||
"--disable-static"
|
||||
"--enable-introspection"
|
||||
(string-append "--with-gir-dir=" #$output
|
||||
"/share/gir-"
|
||||
#$(version-major
|
||||
(package-version gobject-introspection))
|
||||
".0")
|
||||
(string-append "--with-typelib-dir=" #$output
|
||||
"/lib/girepository-"
|
||||
#$(version-major
|
||||
(package-version gobject-introspection))
|
||||
".0")
|
||||
(string-append "--with-html-dir=" #$output
|
||||
"/share/gtk-doc/html")
|
||||
"--with-zlib"
|
||||
"--with-bz2")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-docbook-xml
|
||||
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||
(with-directory-excursion "doc"
|
||||
(substitute* "gsf-docs.xml"
|
||||
(("http://www.oasis-open.org/docbook/xml/4.5/")
|
||||
(search-input-directory (or native-inputs inputs)
|
||||
"xml/dtd/docbook")))))))))
|
||||
(list #:configure-flags
|
||||
#~(list
|
||||
"--disable-static"
|
||||
"--enable-introspection"
|
||||
(string-append "--with-gir-dir=" #$output
|
||||
"/share/gir-"
|
||||
#$(version-major
|
||||
(package-version gobject-introspection))
|
||||
".0")
|
||||
(string-append "--with-typelib-dir=" #$output
|
||||
"/lib/girepository-"
|
||||
#$(version-major
|
||||
(package-version gobject-introspection))
|
||||
".0")
|
||||
(string-append "--with-html-dir=" #$output
|
||||
"/share/gtk-doc/html")
|
||||
"--with-zlib"
|
||||
"--with-bz2")))
|
||||
(native-inputs
|
||||
(list docbook-xml
|
||||
gettext-minimal
|
||||
|
|
Loading…
Reference in a new issue