gnu: texlive-latex-l3packages: Fix missing files.

* gnu/packages/tex.scm (texlive-latex-l3packages): Actually install the files.
This commit is contained in:
Pierre Neidhardt 2018-08-14 10:41:08 +02:00
parent 9285f8bbae
commit 3d4908a77b
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 9 additions and 2 deletions

View File

@ -1432,6 +1432,9 @@ that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
(build-system texlive-build-system) (build-system texlive-build-system)
(arguments (arguments
'(#:tex-directory "latex/l3packages" '(#:tex-directory "latex/l3packages"
;; build-targets must be specified manually since they are in
;; sub-directories.
#:build-targets '("l3keys2e.ins" "xparse.ins" "xfrac.ins" "xfp.ins" "xtemplate.ins")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; All package sources are in sub-directories, so we need to add them ;; All package sources are in sub-directories, so we need to add them
@ -1444,8 +1447,12 @@ that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
cwd "/xparse:" cwd "/xparse:"
cwd "/xfrac:" cwd "/xfrac:"
cwd "/xfp:" cwd "/xfp:"
cwd "/xtemplate"))) cwd "/xtemplate"
#t))))) ;; The terminating ":" is required to include the
;; l3kernel input as well.
":")))
#t)))
))
(inputs (inputs
`(("texlive-latex-l3kernel" ,texlive-latex-l3kernel))) `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
(home-page "https://www.ctan.org/pkg/l3packages") (home-page "https://www.ctan.org/pkg/l3packages")