gnu: hypre: Replace texlive input with minimal texlive-union.
* gnu/packages/maths.scm (hypre)[native-inputs]: Replace texlive with minimal texlive-union.
This commit is contained in:
parent
3159568951
commit
9b405aeaa2
|
@ -3707,7 +3707,13 @@ set.")
|
||||||
`(("doc++" ,doc++)
|
`(("doc++" ,doc++)
|
||||||
("netpbm" ,netpbm)
|
("netpbm" ,netpbm)
|
||||||
("perl" ,perl) ;needed to run 'ppmquant' during tests
|
("perl" ,perl) ;needed to run 'ppmquant' during tests
|
||||||
("texlive" ,texlive) ;full package required for fonts
|
("texlive" ,(texlive-union (list texlive-generic-xypic
|
||||||
|
texlive-fonts-xypic
|
||||||
|
texlive-latex-hyperref
|
||||||
|
texlive-latex-oberdiek
|
||||||
|
texlive-generic-ifxetex
|
||||||
|
texlive-latex-url
|
||||||
|
texlive-bibtex)))
|
||||||
("ghostscript" ,ghostscript)))
|
("ghostscript" ,ghostscript)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("blas" ,openblas)
|
`(("blas" ,openblas)
|
||||||
|
@ -3724,6 +3730,12 @@ set.")
|
||||||
"--with-blas")
|
"--with-blas")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'set-HOME
|
||||||
|
(lambda _
|
||||||
|
;; FIXME: texlive-union does not find the built
|
||||||
|
;; metafonts, so it tries to generate them in HOME.
|
||||||
|
(setenv "HOME" "/tmp")
|
||||||
|
#t))
|
||||||
(add-before 'configure 'chdir-src
|
(add-before 'configure 'chdir-src
|
||||||
(lambda _ (chdir "src")))
|
(lambda _ (chdir "src")))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
|
@ -3738,7 +3750,7 @@ set.")
|
||||||
configure-flags)))))))
|
configure-flags)))))))
|
||||||
(add-after 'build 'build-docs
|
(add-after 'build 'build-docs
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "-Cdocs" "pdf" "html"))))
|
(invoke "make" "-Cdocs" "pdf" "html")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "LD_LIBRARY_PATH" (string-append (getcwd) "/hypre/lib"))
|
(setenv "LD_LIBRARY_PATH" (string-append (getcwd) "/hypre/lib"))
|
||||||
|
|
Loading…
Reference in New Issue