gnu: libsoup: Reindent.
* gnu/packages/gnome.scm (libsoup): Reindent.
This commit is contained in:
parent
0b6e4f82fc
commit
26c228f9b4
|
@ -2324,34 +2324,34 @@ libxml to ease remote use of the RESTful API.")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'disable-unconnected-socket-test
|
(add-before 'configure 'disable-unconnected-socket-test
|
||||||
;; This test fails due to missing /etc/nsswitch.conf
|
;; This test fails due to missing /etc/nsswitch.conf
|
||||||
;; in the build environment.
|
;; in the build environment.
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/socket-test.c"
|
(substitute* "tests/socket-test.c"
|
||||||
((".*/sockets/unconnected.*") ""))
|
((".*/sockets/unconnected.*") ""))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The 'check-local' target runs 'env LANG=C sort -u',
|
;; The 'check-local' target runs 'env LANG=C sort -u',
|
||||||
;; unset 'LC_ALL' to make 'LANG' working.
|
;; unset 'LC_ALL' to make 'LANG' working.
|
||||||
(unsetenv "LC_ALL")
|
(unsetenv "LC_ALL")
|
||||||
;; The ca-certificates.crt is not available in the build
|
;; The ca-certificates.crt is not available in the build
|
||||||
;; environment.
|
;; environment.
|
||||||
(setenv "SSL_CERT_FILE" "/dev/null")
|
(setenv "SSL_CERT_FILE" "/dev/null")
|
||||||
;; HTTPD in Guix uses mod_event and does not build prefork.
|
;; HTTPD in Guix uses mod_event and does not build prefork.
|
||||||
(substitute* "tests/httpd.conf"
|
(substitute* "tests/httpd.conf"
|
||||||
(("^LoadModule mpm_prefork_module.*$") "\n"))
|
(("^LoadModule mpm_prefork_module.*$") "\n"))
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero?
|
(zero?
|
||||||
(system* "make"
|
(system* "make"
|
||||||
;; Install vala bindings into $out.
|
;; Install vala bindings into $out.
|
||||||
(string-append "vapidir=" %output
|
(string-append "vapidir=" %output
|
||||||
"/share/vala/vapi")
|
"/share/vala/vapi")
|
||||||
"install")))))))
|
"install")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
|
Loading…
Reference in New Issue