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
|
@ -68,7 +68,11 @@
|
|||
(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 New Issue