[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
53/69: gnu: Add texlive-lcdftypetools-bin.
From: |
guix-commits |
Subject: |
53/69: gnu: Add texlive-lcdftypetools-bin. |
Date: |
Fri, 31 May 2024 19:04:54 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit a07134b24b59b692dd283e135517cc7db00b1f60
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 16:16:48 2024 +0200
gnu: Add texlive-lcdftypetools-bin.
* gnu/packages/tex.scm (texlive-lcdftypetools-bin): New variable.
(texlive-lcdftypetools)[propagated-inputs]: Add TEXLIVE-LCDFTYPETOOLS-BIN.
Change-Id: I3091f6122365dc087d030d0e1458ce412fd94e30
---
gnu/packages/tex.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 47 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index a4029a91e1..e9d7d78638 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -38790,7 +38790,7 @@ TeX.")
"0yjbc6rsf8c62qa1lyi9kjyjy2p0xlps19llnvly3xyhla08j76f")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (propagated-inputs (list texlive-glyphlist))
+ (propagated-inputs (list texlive-glyphlist texlive-lcdftypetools-bin))
(home-page "https://ctan.org/pkg/lcdf-typetools")
(synopsis "Bundle of outline font manipulation tools")
(description
@@ -38825,6 +38825,52 @@ a Type 1 font.
@end itemize")
(license license:gpl3+)))
+(define-public texlive-lcdftypetools-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-lcdftypetools-bin")
+ (source
+ (origin
+ (inherit texlive-source)
+ (modules '((guix build utils)
+ (ice-9 ftw)))
+ (snippet
+ #~(let ((delete-other-directories
+ (lambda (root dirs)
+ (with-directory-excursion root
+ (for-each
+ delete-file-recursively
+ (scandir "."
+ (lambda (file)
+ (and (not (member file (append '("." "..")
dirs)))
+ (eq? 'directory (stat:type (stat
file)))))))))))
+ (delete-other-directories "libs" '())
+ (delete-other-directories "utils" '())
+ (delete-other-directories "texk" '("lcdf-typetools"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-lcdf-typetools" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "texk/lcdf-typetools"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/lcdf-typetools"
+ (invoke "make" "install"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list texlive-libkpathsea))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-lcdftypetools))
+ (synopsis "Binaries for @code{texlive-lcdftypetools}")
+ (description
+ "This package provides the binaries for @code{texlive-lcdftypetools}.")
+ (license (package-license texlive-lcdftypetools))))
+
(define-public texlive-latex
(package
(name "texlive-latex")
- 50/69: gnu: Add texlive-dviljk-bin., (continued)
- 50/69: gnu: Add texlive-dviljk-bin., guix-commits, 2024/05/31
- 51/69: gnu: Add texlive-dvipng-bin., guix-commits, 2024/05/31
- 38/69: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/05/31
- 46/69: gnu: Add texlive-detex-bin., guix-commits, 2024/05/31
- 47/69: gnu: Add texlive-dtl-bin., guix-commits, 2024/05/31
- 41/69: gnu: Add texlive-makeindex-bin., guix-commits, 2024/05/31
- 44/69: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/05/31
- 43/69: gnu: Add texlive-vlna-bin., guix-commits, 2024/05/31
- 42/69: gnu: Add texlive-metapost-bin., guix-commits, 2024/05/31
- 52/69: gnu: Add texlive-dvisvgm-bin., guix-commits, 2024/05/31
- 53/69: gnu: Add texlive-lcdftypetools-bin.,
guix-commits <=
- 54/69: gnu: Add texlive-lacheck-bin., guix-commits, 2024/05/31
- 49/69: gnu: Add texlive-dvidvi-bin., guix-commits, 2024/05/31
- 55/69: gnu: Add texlive-seetexk-bin., guix-commits, 2024/05/31
- 56/69: gnu: Add texlive-ps2eps-bin., guix-commits, 2024/05/31
- 58/69: gnu: texlive-texdoctk: Fix runtime error., guix-commits, 2024/05/31
- 66/69: gnu: texlive-axodraw2: Build binary separately., guix-commits, 2024/05/31
- 69/69: gnu: Update commentary section in "tex.scm"., guix-commits, 2024/05/31
- 61/69: gnu: Add texlive-xml2pmx-bin., guix-commits, 2024/05/31
- 60/69: gnu: texlive-kpathsea: Propagate the binaries., guix-commits, 2024/05/31
- 62/69: gnu: texlive-dviout-util: Build binaries separately., guix-commits, 2024/05/31