gnu: r: Install info documentation.

* gnu/packages/statistics.scm (r)[arguments]: Add phases "make-info" and
  "install-info" to build and install info documentation.
master
Ricardo Wurmus 2015-09-03 11:41:36 +02:00
parent 5e9738b7ca
commit af23b6e946
1 changed files with 5 additions and 1 deletions

View File

@ -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"