mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: r: Install info documentation.
* gnu/packages/statistics.scm (r)[arguments]: Add phases "make-info" and "install-info" to build and install info documentation.
This commit is contained in:
parent
5e9738b7ca
commit
af23b6e946
1 changed files with 5 additions and 1 deletions
|
@ -68,7 +68,11 @@ (define-public r
|
|||
(add-before
|
||||
'check 'set-timezone
|
||||
;; Some tests require the timezone to be set.
|
||||
(lambda _ (setenv "TZ" "UTC") #t)))
|
||||
(lambda _ (setenv "TZ" "UTC") #t))
|
||||
(add-after 'build 'make-info
|
||||
(lambda _ (zero? (system* "make" "info"))))
|
||||
(add-after 'build 'install-info
|
||||
(lambda _ (zero? (system* "make" "install-info")))))
|
||||
#:configure-flags
|
||||
'("--with-blas=openblas"
|
||||
"--with-lapack"
|
||||
|
|
Loading…
Reference in a new issue