diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-15 16:30:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:15 +0200 |
commit | 1b0fb5ee0f53ad949dafd2eeca5d72fd569032f0 (patch) | |
tree | 353ac079a1f4a72f8c34351ea916b7dd65c089a3 /gnu/packages | |
parent | 558107e4218a5a5925756e2bd83610a299e0b8c9 (diff) | |
download | guix-1b0fb5ee0f53ad949dafd2eeca5d72fd569032f0.tar.gz guix-1b0fb5ee0f53ad949dafd2eeca5d72fd569032f0.zip |
gnu: Add texlive-dosepsbin.
* gnu/packages/tex.scm (texlive-dosepsbin): New variable.
Diffstat (limited to 'gnu/packages')
-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 5519ead5f7..6dfa8015db 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1058,6 +1058,36 @@ ligatures, but also offers additional control over them.") a given (Unicode) glyph. It relies on Fontconfig.") (license license:bsd-3))) +(define-public texlive-dosepsbin + (package + (name "texlive-dosepsbin") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/man/man1/dosepsbin.1" + "doc/man/man1/dosepsbin.man1.pdf" + "doc/support/dosepsbin/" + "scripts/dosepsbin/" + "source/support/dosepsbin/") + (base32 + "117crwcdpirvvm9srrzjn40marg00q16rzyqipm3xxbmwv52i93c"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "dosepsbin.pl"))) + (inputs (list perl)) + (home-page "https://ctan.org/pkg/dosepsbin") + (synopsis "Deal with DOS binary EPS files") + (description + "This package provides a Encapsulated PostScript (EPS) file may given in +a special binary format to support the inclusion of a thumbnail. This file +format, commonly known as DOS EPS format, starts with a binary header that +contains the positions of the possible sections: PostScript (PS); Windows +Metafile Format (WMF); and Tag Image File Format (TIFF). The PS section must +be present and either the WMF file or the TIFF file should be given. The +package provides a Perl program that will extract any of the sections of such +a file, in particular providing a text'-form EPS file for use with (La)TeX.") + (license license:artistic2.0))) + (define-public texlive-tex (package (name "texlive-tex") |