[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/71: gnu: Add texlive-aleph-bin.
From: |
guix-commits |
Subject: |
23/71: gnu: Add texlive-aleph-bin. |
Date: |
Sun, 2 Jun 2024 06:21:43 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit fdf479f73a3a20509c8bb504cfd0301906cb3c14
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 8b492cc884..0bec02e1b9 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2083,7 +2083,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
@@ -2096,6 +2097,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")
- 13/71: gnu: Add texlive-omegaware-bin., (continued)
- 13/71: gnu: Add texlive-omegaware-bin., guix-commits, 2024/06/02
- 14/71: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/02
- 16/71: gnu: Add texlive-patgen-bin., guix-commits, 2024/06/02
- 18/71: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/02
- 19/71: gnu: Add texlive-bibtex-bin., guix-commits, 2024/06/02
- 22/71: gnu: Add texlive-xetex-bin., guix-commits, 2024/06/02
- 24/71: gnu: Add texlive-hitex-bin., guix-commits, 2024/06/02
- 25/71: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/06/02
- 26/71: gnu: Add texlive-m-tx-bin., guix-commits, 2024/06/02
- 21/71: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/06/02
- 23/71: gnu: Add texlive-aleph-bin.,
guix-commits <=
- 27/71: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/02
- 30/71: gnu: Add texlive-velthuis-bin., guix-commits, 2024/06/02
- 29/71: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/02
- 31/71: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/06/02
- 32/71: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/02
- 28/71: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/02
- 34/71: gnu: Add texlive-psutils-bin., guix-commits, 2024/06/02
- 35/71: gnu: Add texlive-tex4ht-bin., guix-commits, 2024/06/02
- 36/71: gnu: Add texlive-xdvi-bin., guix-commits, 2024/06/02
- 37/71: gnu: Add texlive-tpic2pdftex-bin., guix-commits, 2024/06/02