diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-05-28 16:24:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:28 +0200 |
commit | 0fdbe1dd7065203266bc429d1e8aa1cea8d0e494 (patch) | |
tree | 4a997de9031d01fe344f45637945093e375ffa21 /gnu/packages/tex.scm | |
parent | b64307b38b26b513bb075b049de543369dd18034 (diff) | |
download | guix-0fdbe1dd7065203266bc429d1e8aa1cea8d0e494.tar guix-0fdbe1dd7065203266bc429d1e8aa1cea8d0e494.tar.gz |
gnu: Add texlive-seetexk-bin.
* gnu/packages/tex.scm (texlive-seetexk-bin): New variable.
(texlive-seetexk)[propagated-inputs]: Add TEXLIVE-SEETEXK-BIN.
Change-Id: I6ea1f8cd3100267cf3ba8593f49370f7739d40f2
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 682c466872..74947575eb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -40637,6 +40637,7 @@ stylized format that Metapost outputs.") "1bhv5xgv8jpam5apdybd0cggnvcizk2r6zs7lim1hmhzafpqqlcx"))) (outputs '("out" "doc")) (build-system texlive-build-system) + (propagated-inputs (list texlive-seetexk-bin)) (home-page "https://ctan.org/pkg/dvibook") (synopsis "Utilities for manipulating DVI files") (description @@ -40662,6 +40663,52 @@ SeeTeX project. @end itemize") (license license:expat))) +(define-public texlive-seetexk-bin + (package + (inherit texlive-bin) + (name "texlive-seetexk-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" '("seetexk")))))) + (arguments + (substitute-keyword-arguments (package-arguments texlive-bin) + ((#:configure-flags flags) + #~(cons "--enable-seetexk" (delete "--enable-web2c" #$flags))) + ((#:phases phases) + #~(modify-phases #$phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (with-directory-excursion "texk/seetexk" + (invoke "make" "check"))))) + (replace 'install + (lambda _ + (with-directory-excursion "texk/seetexk" + (invoke "make" "install")))))))) + (native-inputs (list pkg-config)) + (inputs (list texlive-libkpathsea)) + (propagated-inputs '()) + (home-page (package-home-page texlive-seetexk)) + (synopsis "Binary for @code{texlive-seetexk}") + (description + "This package provides the binary for @code{texlive-seetexk}.") + (license (package-license texlive-seetexk)))) + (define-public texlive-spix (package (name "texlive-spix") |