diff options
author | Nicolas Goaziou <[email protected]> | 2024-05-28 16:34:14 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2024-08-31 10:45:28 +0200 |
commit | 8f0b6c5ac18dc13eef1d5d88781f42122e37993f (patch) | |
tree | d623b9ee42ca0eeb9d9eb8d9d23f64b985911789 /gnu | |
parent | 550227d2b10e75482c0bad297927f1b2d4c0df71 (diff) |
gnu: Add texlive-t1utils-bin.
* gnu/packages/tex.scm (texlive-t1utils-bin): New variable.
(texlive-t1utils)[propagated-inputs]: Add TEXLIVE-T1UTILS-BIN.
Change-Id: I35fff0ac6bc176da248a43e8d434c746830875e0
Diffstat (limited to 'gnu')
-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 69c8a572f5..08b974bc1c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -44320,6 +44320,7 @@ known as railroad diagrams.") "0hdk57179nn57wnmvr3jasjavkvmrn6ryph6jvjhsfqprn7bhf1y"))) (outputs '("out" "doc")) (build-system texlive-build-system) + (propagated-inputs (list texlive-t1utils-bin)) (home-page "https://ctan.org/pkg/t1utils") (synopsis "Simple Type 1 font manipulation programs") (description @@ -44337,6 +44338,52 @@ and -editable format; @end itemize") (license license:public-domain))) +(define-public texlive-t1utils-bin + (package + (inherit texlive-bin) + (name "texlive-t1utils-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 "texk" '()) + (delete-other-directories "utils" '("t1utils")))))) + (arguments + (substitute-keyword-arguments (package-arguments texlive-bin) + ((#:configure-flags flags) + #~(cons "--enable-t1utils" (delete "--enable-web2c" #$flags))) + ((#:phases phases) + #~(modify-phases #$phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (with-directory-excursion "utils/t1utils" + (invoke "make" "check"))))) + (replace 'install + (lambda _ + (with-directory-excursion "utils/t1utils" + (invoke "make" "install")))))))) + (native-inputs '()) + (inputs '()) + (propagated-inputs '()) + (home-page (package-home-page texlive-t1utils)) + (synopsis "Binaries for @code{texlive-t1utils}") + (description + "This package provides the binaries for @code{texlive-t1utils}.") + (license (package-license texlive-t1utils)))) + (define-public texlive-table-fct (package (name "texlive-table-fct") |