gnu: Add texlive-latex-pdfx.
* gnu/packages/tex.scm (texlive-latex-pdfx): New variable.
This commit is contained in:
parent
cafd4d387b
commit
f87dcb4d75
1 changed files with 52 additions and 0 deletions
|
@ -6482,3 +6482,55 @@ digital material to enhance the workflow in publication. The essence is that
|
||||||
the metadata is stored in an XML file, and this XML stream is then embedded in
|
the metadata is stored in an XML file, and this XML stream is then embedded in
|
||||||
the file to which it applies.")
|
the file to which it applies.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public texlive-latex-pdfx
|
||||||
|
(package
|
||||||
|
(name "texlive-latex-pdfx")
|
||||||
|
(version (number->string %texlive-revision))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method svn-fetch)
|
||||||
|
(uri (texlive-ref "latex" "pdfx"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0ikxg8yzq78hy5b9x13d4nah46d0yvmwlqmdri06pygbx116dcac"))))
|
||||||
|
(build-system texlive-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tex-directory "latex/pdfx"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-encoding
|
||||||
|
(lambda _
|
||||||
|
(substitute* "pdfx.dtx"
|
||||||
|
((" .+umaczy") "umaczy"))
|
||||||
|
#t))
|
||||||
|
(add-before 'install 'install-tex-files
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(let ((target (string-append (assoc-ref outputs "out")
|
||||||
|
"/share/texmf-dist/tex/latex/pdfx")))
|
||||||
|
(mkdir-p target)
|
||||||
|
(copy-recursively (assoc-ref inputs "texlive-tex-pdfx") target)
|
||||||
|
;; Install the generated version in the "install" phase.
|
||||||
|
(delete-file (string-append target "/pdfx.sty"))
|
||||||
|
#t))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("texlive-generic-pdftex" ,texlive-generic-pdftex)))
|
||||||
|
(native-inputs
|
||||||
|
`(("texlive-tex-pdfx"
|
||||||
|
,(origin
|
||||||
|
(method svn-fetch)
|
||||||
|
(uri (svn-reference
|
||||||
|
(url (string-append "svn://www.tug.org/texlive/tags/"
|
||||||
|
%texlive-tag "/Master/texmf-dist/"
|
||||||
|
"/tex/latex/pdfx"))
|
||||||
|
(revision %texlive-revision)))
|
||||||
|
(file-name (string-append "texlive-tex-latex-pdfx-" version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14j1zsvqc59ims3sk34v6km8db6cimks28y5fcxcr5mi2ykvj4vf"))))))
|
||||||
|
(home-page "https://www.ctan.org/pkg/pdfx")
|
||||||
|
(synopsis "PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX")
|
||||||
|
(description
|
||||||
|
"This package helps LaTeX users to create PDF/X, PFD/A and other
|
||||||
|
standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX.")
|
||||||
|
(license license:lppl1.2+)))
|
||||||
|
|
Reference in a new issue