mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-17 00:18:16 -05:00
gnu: pango@1.42: Disable layout test.
* gnu/packages/gtk.scm (pango-1.42)[arguments]: Add #:phases.
This commit is contained in:
parent
f04dca8eb7
commit
ba47c83570
1 changed files with 12 additions and 1 deletions
|
@ -357,7 +357,18 @@ (define-public pango-1.42
|
|||
(base32
|
||||
"17bwb7dgbncrfsmchlib03k9n3xaalirb39g3yb43gg8cg6p8aqx"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '())))
|
||||
(arguments
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
(add-after 'configure 'disable-layout-test
|
||||
(lambda _
|
||||
;; This test requires that fontconfig uses bitmap fonts
|
||||
;; such as "gs-fonts"; however providing such a package
|
||||
;; alone is not enough, as the requirement comes from
|
||||
;; deeper in the font stack. Since this version of Pango
|
||||
;; is only used for librsvg, simply disable the test.
|
||||
(substitute* "tests/Makefile"
|
||||
(("test-layout\\$\\(EXEEXT\\)") ""))
|
||||
#t)))))))
|
||||
|
||||
(define-public pangox-compat
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue