diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-05-27 16:11:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:21 +0200 |
commit | f4551f69e595b940e45a2e177761618e97f87506 (patch) | |
tree | db6d4fa8cfee76e3988a6e11e4ffdc6eefd888db | |
parent | f4def03d1b17f19ff1057f98bbb31bd59720612c (diff) | |
download | guix-f4551f69e595b940e45a2e177761618e97f87506.tar.gz guix-f4551f69e595b940e45a2e177761618e97f87506.zip |
gnu: Add texlive-texware-bin.
* gnu/packages/tex.scm (texlive-texware-bin): New variable.
(texlive-texware)[propagated-inputs]: Add TEXLIVE-TEXWARE-BIN.
Change-Id: I8c3393f3c7e54477f8ffc350a122e20a0a074c97
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 591ae83327..794756356e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -43460,6 +43460,7 @@ university, is proposed.") "122r0aq02vwx6irsnapnfbvhgy5d09x90rc8zc7a0bi7b25bxnd1"))) (outputs '("out" "doc")) (build-system texlive-build-system) + (propagated-inputs (list texlive-texware-bin)) (home-page "https://ctan.org/pkg/texware") (synopsis "Utility programs for use with TeX") (description @@ -43471,6 +43472,30 @@ convert TeX Font Metric (TFM) file to human readable Property List (PL) files and vice versa.") (license license:public-domain))) +(define-public texlive-texware-bin + (package + (inherit texlive-bin) + (name "texlive-texware-bin") + (arguments + (substitute-keyword-arguments (package-arguments texlive-bin) + ((#:configure-flags flags) + #~(delete "--enable-web2c" #$flags)) + ((#:phases phases) + #~(modify-phases #$phases + (replace 'install + (lambda _ + (with-directory-excursion "texk/web2c" + (let ((bin (string-append #$output "/bin")) + (files '("dvitype" "pooltype"))) + (for-each (lambda (f) (invoke "make" f)) files) + (for-each (lambda (f) (install-file f bin)) files))))))))) + (native-inputs (list pkg-config)) + (home-page (package-home-page texlive-texware)) + (synopsis "Binaries for @code{texlive-texware}") + (description + "This package provides the binaries for @code{texlive-texware}.") + (license (package-license texlive-texware)))) + (define-public texlive-ticollege (package (name "texlive-ticollege") |