[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/69: gnu: Add texlive-fontware-bin.
From: |
guix-commits |
Subject: |
14/69: gnu: Add texlive-fontware-bin. |
Date: |
Fri, 31 May 2024 19:04:38 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 415718915d12e27ded6c0a113f3c254ff5ccedda
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:11:20 2024 +0200
gnu: Add texlive-fontware-bin.
* gnu/packages/tex.scm (texlive-fontware-bin): New variable.
(texlive-fontware)[propagated-inputs]: Add TEXLIVE-FONTWARE-BIN.
Change-Id: I5c59658aeab1a3cb289e87f77fae9436acae8a7f
---
gnu/packages/tex.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 14143b2735..eebff91ccb 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -34813,6 +34813,7 @@ sources, and with LaTeX @file{.fd} files.")
"0ng27m6cz92aa52z99gnw5i8s8fbkxq4354mygwnchchgxndcba0")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-fontware-bin))
(home-page "https://ctan.org/pkg/vfware")
(synopsis "Tools for virtual font metrics")
(description
@@ -34824,6 +34825,30 @@ generates a VF file and a TFM file; @command{vftovp}
takes a VF file and a TFM
file and generates a VPL file.")
(license license:knuth)))
+(define-public texlive-fontware-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-fontware-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 '("pltotf" "tftopl" "vftovp" "vptovf")))
+ (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-fontware))
+ (synopsis "Binaries for @code{texlive-fontware}")
+ (description
+ "This package provides the binaries for @code{texlive-fontware}.")
+ (license (package-license texlive-fontware))))
+
(define-public texlive-forest-quickstart
(package
(name "texlive-forest-quickstart")
- 06/69: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., (continued)
- 06/69: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/05/31
- 11/69: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/05/31
- 12/69: gnu: Add texlive-mfware-bin., guix-commits, 2024/05/31
- 05/69: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/05/31
- 04/69: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/05/31
- 10/69: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/05/31
- 09/69: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/05/31
- 08/69: gnu: Add texlive-libptexenc., guix-commits, 2024/05/31
- 13/69: gnu: Add texlive-omegaware-bin., guix-commits, 2024/05/31
- 15/69: gnu: Add texlive-texware-bin., guix-commits, 2024/05/31
- 14/69: gnu: Add texlive-fontware-bin.,
guix-commits <=
- 16/69: gnu: Add texlive-patgen-bin., guix-commits, 2024/05/31
- 17/69: gnu: Add texlive-uptex-bin., guix-commits, 2024/05/31
- 18/69: gnu: Add texlive-ptex-bin., guix-commits, 2024/05/31
- 19/69: gnu: Add texlive-bibtex-bin., guix-commits, 2024/05/31
- 20/69: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/05/31
- 21/69: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/05/31
- 22/69: gnu: Add texlive-xetex-bin., guix-commits, 2024/05/31
- 23/69: gnu: Add texlive-aleph-bin., guix-commits, 2024/05/31
- 28/69: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/05/31
- 30/69: gnu: Add texlive-velthuis-bin., guix-commits, 2024/05/31