[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/69: gnu: Add texlive-aleph-bin.
From: |
guix-commits |
Subject: |
23/69: gnu: Add texlive-aleph-bin. |
Date: |
Fri, 31 May 2024 19:04:41 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit b00828c5664840fc4c1d54c53817f2072f385642
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 cde688d74a..0e2ac2a01c 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2086,7 +2086,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
@@ -2099,6 +2100,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/69: gnu: Add texlive-omegaware-bin., (continued)
- 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, 2024/05/31
- 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 <=
- 28/69: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/05/31
- 30/69: gnu: Add texlive-velthuis-bin., guix-commits, 2024/05/31
- 32/69: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/05/31
- 26/69: gnu: Add texlive-m-tx-bin., guix-commits, 2024/05/31
- 25/69: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/05/31
- 29/69: gnu: Add texlive-pmx-bin., guix-commits, 2024/05/31
- 27/69: gnu: Add texlive-autosp-bin., guix-commits, 2024/05/31
- 34/69: gnu: Add texlive-psutils-bin., guix-commits, 2024/05/31
- 36/69: gnu: Add texlive-xdvi-bin., guix-commits, 2024/05/31
- 33/69: gnu: Add texlive-dvips-bin., guix-commits, 2024/05/31