diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:37:05 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:28 +0200 |
commit | 2d1ca9eb762e721e3e69824ae46a8e4fc3623a63 (patch) | |
tree | 6f3dbe4a04691a0f939995a349d82c75380bf134 /gnu/packages/tex.scm | |
parent | 4d28b31fef3d9f489b22321527e43ace553cb52d (diff) |
gnu: Add texlive-emisa.
* gnu/packages/tex.scm (texlive-emisa): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7f162a01ba..0120cddfd2 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12433,6 +12433,36 @@ symbols but does not provide any fonts. The fonts themselves must be acquired otherwise.") (license license:gpl3))) +(define-public texlive-emisa + (package + (name "texlive-emisa") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/emisa/" "source/latex/emisa/" + "tex/latex/emisa/") + (base32 + "02f8blixqqbn7k3h2sn59b9d8i2lxqnh2zwdk4gv7wyjr9l0sc1x"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + ;; "emisa.ins" apparently wants to generate itself! Fix that. + (add-after 'unpack 'fix-ins + (lambda _ + (substitute* "source/latex/emisa/emisa.ins" + (("\\\\file\\{\\\\jobname\\.ins\\}.*") ""))))))) + (home-page "https://ctan.org/pkg/emisa") + (synopsis "LaTeX package for preparing manuscripts for the journal +@emph{EMISA}") + (description + "The EMISA LaTeX package is provided for preparing manuscripts for +submission to @acronym{EMISA, Enterprise Modelling and Information Systems +Architectures}, and for preparing accepted submissions for publication as well +as for typesetting the final document by the editorial office.") + (license license:lppl1.3c))) + (define-public texlive-endiagram (package (name "texlive-endiagram") |