[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
24/72: gnu: Add texlive-hitex-bin.
From: |
guix-commits |
Subject: |
24/72: gnu: Add texlive-hitex-bin. |
Date: |
Mon, 3 Jun 2024 08:59:56 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 5445e75606580e44838e577f4f027e01c790dc38
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 18:54:32 2024 +0200
gnu: Add texlive-hitex-bin.
* gnu/packages/tex.scm (texlive-hitex-bin): New variable.
(texlive-hitex)[propagated-inputs]: Add TEXLIVE-HITEX-BIN.
Change-Id: I1d116623970d60261b366c5c48e05b2dcf53fbde
---
gnu/packages/tex.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 0bec02e1b9..88c9656c19 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -16758,6 +16758,7 @@ Indian Type Foundry, with support for LaTeX and
pdfLaTeX.")
texlive-etex
texlive-everyshi
texlive-firstaid
+ texlive-hitex-bin
texlive-hyphen-base
texlive-knuth-lib
texlive-l3backend
@@ -16784,6 +16785,35 @@ TeX to format a document for nearly-arbitrary values
of @code{\\hsize} and
@code{\\vsize}.")
(license license:x11)))
+(define-public texlive-hitex-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-hitex-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--disable-web2c"
+ "--enable-hitex"
+ (delete "--disable-hitex"
+ (delete "--enable-web2c" #$flags))))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/web2c"
+ (let ((bin (string-append #$output "/bin"))
+ (files '("hishrink" "histretch" "hitex")))
+ (for-each (lambda (f) (invoke "make" f)) files)
+ (for-each (lambda (f) (install-file f bin)) files)
+ (with-directory-excursion bin
+ (symlink "hitex" "hilatex"))))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-hitex))
+ (synopsis "Binaries for @code{texlive-hitex}")
+ (description
+ "This package provides the binaries for @code{texlive-hitex}.")
+ (license (package-license texlive-hitex))))
+
(define-public texlive-hitszbeamer
(package
(name "texlive-hitszbeamer")
- 15/72: gnu: Add texlive-texware-bin., (continued)
- 15/72: gnu: Add texlive-texware-bin., guix-commits, 2024/06/03
- 17/72: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/03
- 16/72: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/03
- 14/72: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/03
- 19/72: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/03
- 18/72: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/03
- 21/72: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/06/03
- 20/72: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/06/03
- 23/72: gnu: Add texlive-aleph-bin., guix-commits, 2024/06/03
- 22/72: gnu: Add texlive-xetex-bin., guix-commits, 2024/06/03
- 24/72: gnu: Add texlive-hitex-bin.,
guix-commits <=
- 25/72: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/03
- 26/72: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/03
- 27/72: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/03
- 29/72: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/03
- 31/72: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/06/03
- 28/72: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/03
- 32/72: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/03
- 33/72: gnu: Add texlive-dvips-bin., guix-commits, 2024/06/03
- 30/72: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/03
- 40/72: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/06/03