ngz pushed a commit to branch tex-team
in repository guix.
commit 6179774c8a3574cb854e56fdf7a64d99e7df7035
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Tue May 28 15:46:27 2024 +0200
gnu: Add texlive-dvi2tty-bin.
* gnu/packages/tex.scm (texlive-dvi2tty-bin): New variable.
(texlive-dvi2tty)[propagated-inputs]: Add TEXLIVE-DVI2TTY-BIN.
Change-Id: I4b583f4edb7205cacbe9fcb00286af0513bc88bb
---
gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index d033dc8d54..f8738ffc46 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34687,6 +34687,7 @@ homebrewed classes and package files.")
"108y0qxh13x0iivgsvkk4370f471p03nyl4x9nn7lng1wrsafp6h")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-dvi2tty-bin))
(home-page "https://ctan.org/pkg/dvi2tty")
(synopsis "Produce ASCII from DVI")
(description
@@ -34694,6 +34695,52 @@ homebrewed classes and package files.")
the document.")
(license license:gpl2)))
+(define-public texlive-dvi2tty-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-dvi2tty-bin")
+ (source
+ (origin
+ (inherit texlive-source)
+ (modules '((guix build utils)
+ (ice-9 ftw)))
+ (snippet
+ #~(let ((delete-other-directories
+ (lambda (root dirs)
+ (with-directory-excursion root
+ (for-each
+ delete-file-recursively
+ (scandir "."
+ (lambda (file)
+ (and (not (member file (append '("." "..")
dirs)))
+ (eq? 'directory (stat:type (stat
file)))))))))))
+ (delete-other-directories "libs" '())
+ (delete-other-directories "utils" '())
+ (delete-other-directories "texk" '("dvi2tty"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-dvi2tty" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "texk/dvi2tty"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/dvi2tty"
+ (invoke "make" "install"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list texlive-libkpathsea texlive-libptexenc))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-dvi2tty))
+ (synopsis "Binaries for @code{texlive-dvi2tty}")
+ (description
+ "This package provides the binaries for @code{texlive-dvi2tty}.")
+ (license (package-license texlive-dvi2tty))))
+
(define-public texlive-dviasm
(package
(name "texlive-dviasm")