mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: pari-gp: Build documentation.
* gnu/packages/algebra.scm (pari-gp)[native-inputs]: Add texlive-minimal. [arguments]: Modify make-flags to build documentation.
This commit is contained in:
parent
6b5eb8406c
commit
9bd9486df4
1 changed files with 3 additions and 1 deletions
|
@ -26,6 +26,7 @@ (define-module (gnu packages algebra)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages texlive)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
|
@ -125,12 +126,13 @@ (define-public pari-gp
|
|||
(base32
|
||||
"0c8l83a0gjq73r9hndsrzkypwxvnnm4pxkkzbg6jm95m80nzwh11"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("texlive" ,texlive-minimal)))
|
||||
(inputs `(("gmp" ,gmp)
|
||||
("libx11" ,libx11)
|
||||
("perl" ,perl)
|
||||
("readline" ,readline)))
|
||||
(arguments
|
||||
'(#:make-flags '("gp")
|
||||
'(#:make-flags '("all")
|
||||
;; FIXME: building the documentation requires tex; once this is
|
||||
;; available, replace "gp" by "all"
|
||||
#:test-target "dobench"
|
||||
|
|
Loading…
Reference in a new issue