[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/66: gnu: Add texlive-tex4ht-bin.
From: |
guix-commits |
Subject: |
33/66: gnu: Add texlive-tex4ht-bin. |
Date: |
Wed, 29 May 2024 10:17:24 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 0467acafc3e1ea3c223c817217536d3e61263660
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 00:17:13 2024 +0200
gnu: Add texlive-tex4ht-bin.
* gnu/packages/tex.scm (texlive-tex4ht-bin): New variable.
(texlive-tex4ht)[arguments]<#:link-scripts>: Remove as those are now
provided by
TEXLIVE-TEX4HT-BIN.
[inputs]: Remove PERL.
[propagated-inputs]: Add TEXLIVE-TEX4HT-BIN.
Change-Id: Ib9a677d61a86419db4f5d60401566d340fbcf80d
---
gnu/packages/tex.scm | 60 ++++++++++++++++++++++++++++++++++++++++------------
1 file changed, 47 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e6a7120f9e..5c1a1061b2 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -43696,19 +43696,7 @@ for use in planning a class.")
"1svmivc272xj9fzy5p055lp7g9vcqs75jp4x54682yrq0qizv03c")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (arguments
- (list #:link-scripts
- #~(list "ht.sh"
- "htcontext.sh"
- "htlatex.sh"
- "htmex.sh"
- "httex.sh"
- "httexi.sh"
- "htxelatex.sh"
- "htxetex.sh"
- "mk4ht.pl"
- "xhlatex.sh")))
- (inputs (list perl))
+ (propagated-inputs (list texlive-tex4ht-bin))
(home-page "https://ctan.org/pkg/tex4ht")
(synopsis "Convert (La)TeX to HTML/XML")
(description
@@ -43723,6 +43711,52 @@ TeX4ht to approach the robustness characteristic of
restricted-syntax systems
such as @code{gellmu}.")
(license license:lppl)))
+(define-public texlive-tex4ht-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-tex4ht-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" '("tex4htk"))))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-tex4htk" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "texk/tex4htk"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/tex4htk"
+ (invoke "make" "install"))))))))
+ (native-inputs (list pkg-config))
+ (inputs (list perl texlive-libkpathsea))
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-tex4ht))
+ (synopsis "Binaries for @code{texlive-tex4ht}")
+ (description
+ "This package provides the binaries for @code{texlive-tex4ht}.")
+ (license (package-license texlive-tex4ht))))
+
(define-public texlive-tex4ebook
(package
(name "texlive-tex4ebook")
- 20/66: gnu: Add texlive-xetex-bin., (continued)
- 20/66: gnu: Add texlive-xetex-bin., guix-commits, 2024/05/29
- 24/66: gnu: Add texlive-m-tx-bin., guix-commits, 2024/05/29
- 26/66: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/05/29
- 27/66: gnu: Add texlive-pmx-bin., guix-commits, 2024/05/29
- 28/66: gnu: Add texlive-velthuis-bin., guix-commits, 2024/05/29
- 31/66: gnu: Add texlive-dvips-bin., guix-commits, 2024/05/29
- 32/66: gnu: Add texlive-psutils-bin., guix-commits, 2024/05/29
- 25/66: gnu: Add texlive-autosp-bin., guix-commits, 2024/05/29
- 29/66: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/05/29
- 30/66: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/05/29
- 33/66: gnu: Add texlive-tex4ht-bin.,
guix-commits <=
- 34/66: gnu: Add texlive-xdvi-bin., guix-commits, 2024/05/29
- 36/66: gnu: Add texlive-ttfutils-bin., guix-commits, 2024/05/29
- 35/66: gnu: Add texlive-tpic2pdftex-bin., guix-commits, 2024/05/29
- 37/66: gnu: Add texlive-upmendex-bin., guix-commits, 2024/05/29
- 41/66: gnu: Add texlive-vlna-bin., guix-commits, 2024/05/29
- 42/66: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/05/29
- 43/66: gnu: Add texlive-chktex-bin., guix-commits, 2024/05/29
- 39/66: gnu: Add texlive-makeindex-bin., guix-commits, 2024/05/29
- 40/66: gnu: Add texlive-metapost-bin., guix-commits, 2024/05/29
- 38/66: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/05/29