[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
25/75: gnu: Add texlive-aleph-bin.
From: |
guix-commits |
Subject: |
25/75: gnu: Add texlive-aleph-bin. |
Date: |
Mon, 10 Jun 2024 12:24:34 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit a81b44f3956640b9e1f9f4eef67c5815c5c558de
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 18:51:50 2024 +0200
gnu: Add texlive-aleph-bin.
* gnu/packages/tex.scm (texlive-aleph-bin): New variable.
(texlive-aleph)[propagated-inputs]: Add TEXLIVE-ALEPH-BIN.
Change-Id: I77bb0bc1943f43d57f801404317568c438cb2f50
---
gnu/packages/tex.scm | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index d86b3ac5b6..3f78c43724 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2084,7 +2084,8 @@ number styles are available.")
(build-system texlive-build-system)
(arguments (list #:create-formats #~(list "aleph")))
(propagated-inputs
- (list texlive-cm
+ (list texlive-aleph-bin
+ texlive-cm
texlive-hyphen-base
texlive-knuth-lib
texlive-lambda
@@ -2097,6 +2098,31 @@ number styles are available.")
extensions of TeX, itself developed for e-TeX.")
(license license:gpl3+)))
+(define-public texlive-aleph-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-aleph-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--disable-web2c"
+ "--enable-aleph"
+ (delete "--disable-aleph"
+ (delete "--enable-web2c" #$flags))))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/web2c"
+ (invoke "make" "aleph")
+ (install-file "aleph" (string-append #$output "/bin")))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-aleph))
+ (synopsis "Binary for @code{texlive-aleph}")
+ (description
+ "This package provides the binary for @code{texlive-aleph}.")
+ (license (package-license texlive-aleph))))
+
(define-public texlive-alfaslabone
(package
(name "texlive-alfaslabone")
- 15/75: gnu: Add texlive-omegaware-bin., (continued)
- 15/75: gnu: Add texlive-omegaware-bin., guix-commits, 2024/06/10
- 17/75: gnu: Add texlive-texware-bin., guix-commits, 2024/06/10
- 20/75: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/10
- 14/75: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/10
- 12/75: gnu: texlive-luatex: Fix build., guix-commits, 2024/06/10
- 16/75: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/10
- 19/75: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/10
- 18/75: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/10
- 21/75: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/10
- 22/75: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/06/10
- 25/75: gnu: Add texlive-aleph-bin.,
guix-commits <=
- 24/75: gnu: Add texlive-xetex-bin., guix-commits, 2024/06/10
- 26/75: gnu: Add texlive-hitex-bin., guix-commits, 2024/06/10
- 27/75: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/10
- 28/75: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/10
- 30/75: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/10
- 31/75: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/10
- 34/75: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/10
- 23/75: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/06/10
- 29/75: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/10
- 32/75: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/10