[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/78: gnu: Add texlive-patgen-bin.
From: |
guix-commits |
Subject: |
19/78: gnu: Add texlive-patgen-bin. |
Date: |
Wed, 12 Jun 2024 17:00:30 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 0cdece316852812f2262d5c0382b7a18364c0420
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:13:52 2024 +0200
gnu: Add texlive-patgen-bin.
* gnu/packages/tex.scm (texlive-patgen-bin): New variable.
(texlive-patgen)[propagated-inputs]: Add TEXLIVE-PATGEN-BIN.
Change-Id: Id1d86035a7015bd447b9a24ea7e430a7b5ef57a4
---
gnu/packages/tex.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6063588b49..e9569dfb4e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -38981,7 +38981,7 @@ considered as word, header etc.")
"03y05mv0n04hyj0lcq54grx7w5wv95h61j6xlx2jc9v0ib9akq4y")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (propagated-inputs (list texlive-kpathsea))
+ (propagated-inputs (list texlive-kpathsea texlive-patgen-bin))
(home-page "https://ctan.org/pkg/patgen")
(synopsis "Generate hyphenation patterns")
(description
@@ -38989,6 +38989,29 @@ considered as word, header etc.")
that can be used by the TeX 82 hyphenation algorithm.")
(license license:public-domain)))
+(define-public texlive-patgen-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-patgen-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"
+ (invoke "make" "patgen")
+ (install-file "patgen"
+ (string-append #$output "/bin")))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-patgen))
+ (synopsis "Binary for @code{texlive-patgen}")
+ (description
+ "This package provides the binary for @code{texlive-patgen}.")
+ (license (package-license texlive-patgen))))
+
(define-public texlive-pdfbook2
(package
(name "texlive-pdfbook2")
- 18/78: gnu: Add texlive-texware-bin., (continued)
- 18/78: gnu: Add texlive-texware-bin., guix-commits, 2024/06/12
- 30/78: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/12
- 32/78: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/12
- 13/78: gnu: texlive-csplain: Fix build., guix-commits, 2024/06/12
- 27/78: gnu: Add texlive-hitex-bin., guix-commits, 2024/06/12
- 29/78: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/12
- 31/78: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/12
- 24/78: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/06/12
- 22/78: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/12
- 23/78: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/06/12
- 19/78: gnu: Add texlive-patgen-bin.,
guix-commits <=
- 26/78: gnu: Add texlive-aleph-bin., guix-commits, 2024/06/12
- 28/78: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/12
- 33/78: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/12
- 35/78: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/12
- 40/78: gnu: Add texlive-tpic2pdftex-bin., guix-commits, 2024/06/12
- 44/78: gnu: Add texlive-makeindex-bin., guix-commits, 2024/06/12
- 46/78: gnu: Add texlive-vlna-bin., guix-commits, 2024/06/12
- 37/78: gnu: Add texlive-psutils-bin., guix-commits, 2024/06/12
- 41/78: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/06/12
- 05/78: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/06/12