[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
64/81: gnu: Add texlive-xml2pmx-bin.
From: |
guix-commits |
Subject: |
64/81: gnu: Add texlive-xml2pmx-bin. |
Date: |
Tue, 18 Jun 2024 04:40:39 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 983ae4d53225a847e3c557241171fecae1d6b98b
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 28 18:26:02 2024 +0200
gnu: Add texlive-xml2pmx-bin.
* gnu/packages/tex.scm (texlive-xml2pmx-bin): New variable.
(texlive-xml2pmx)[propagated-inputs]: Add TEXLIVE-XML2PMX-BIN.
Change-Id: I112c29945b0643374cced1eb24d598d2cd2259ea
---
gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index d00744b0b0..ec55863775 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -48742,6 +48742,7 @@ correctly; and define two extra commands:
@code{\\vfrac} and
"1d3ralqh0b71scd59b4hmm707yfrz1rj28ni2lzkhbb1ql73bvah")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-xml2pmx-bin))
(home-page "https://ctan.org/pkg/xml2pmx")
(synopsis "Convert MusicXML to PMX and MusiXTeX")
(description
@@ -48749,6 +48750,52 @@ correctly; and define two extra commands:
@code{\\vfrac} and
MusiXTeX processing.")
(license license:gpl3+)))
+(define-public texlive-xml2pmx-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-xml2pmx-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" '("xml2pmx"))
+ (delete-other-directories "texk" '())))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons "--enable-xml2pmx" (delete "--enable-web2c" #$flags)))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "utils/xml2pmx"
+ (invoke "make" "check")))))
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "utils/xml2pmx"
+ (invoke "make" "install"))))))))
+ (native-inputs '())
+ (inputs '())
+ (propagated-inputs '())
+ (home-page (package-home-page texlive-xml2pmx))
+ (synopsis "Binary for @code{texlive-xml2pmx}")
+ (description
+ "This package provides the binary for @code{texlive-xml2pmx}.")
+ (license (package-license texlive-xml2pmx))))
+
(define-public texlive-xmltexconfig
(package
(name "texlive-xmltexconfig")
- 42/81: gnu: Add texlive-upmendex-bin., (continued)
- 42/81: gnu: Add texlive-upmendex-bin., guix-commits, 2024/06/18
- 43/81: gnu: Add texlive-gsftopk-bin., guix-commits, 2024/06/18
- 44/81: gnu: Add texlive-makeindex-bin., guix-commits, 2024/06/18
- 45/81: gnu: Add texlive-metapost-bin., guix-commits, 2024/06/18
- 46/81: gnu: Add texlive-vlna-bin., guix-commits, 2024/06/18
- 48/81: gnu: Add texlive-chktex-bin., guix-commits, 2024/06/18
- 51/81: gnu: Add texlive-dvi2tty-bin., guix-commits, 2024/06/18
- 53/81: gnu: Add texlive-dviljk-bin., guix-commits, 2024/06/18
- 60/81: gnu: Add texlive-t1utils-bin., guix-commits, 2024/06/18
- 58/81: gnu: Add texlive-seetexk-bin., guix-commits, 2024/06/18
- 64/81: gnu: Add texlive-xml2pmx-bin.,
guix-commits <=
- 70/81: gnu: texlive-musixtnt: Build binary separately., guix-commits, 2024/06/18
- 69/81: gnu: texlive-dvipos: Build binaries separately., guix-commits, 2024/06/18
- 76/81: gnu: texlive-xits: Fix typo in description., guix-commits, 2024/06/18
- 80/81: gnu: texlive-hyphen-complete: Fix locations., guix-commits, 2024/06/18
- 49/81: gnu: Add texlive-detex-bin., guix-commits, 2024/06/18
- 47/81: gnu: Add texlive-cjkutils-bin., guix-commits, 2024/06/18
- 50/81: gnu: Add texlive-dtl-bin., guix-commits, 2024/06/18
- 54/81: gnu: Add texlive-dvipng-bin., guix-commits, 2024/06/18
- 52/81: gnu: Add texlive-dvidvi-bin., guix-commits, 2024/06/18
- 55/81: gnu: Add texlive-dvisvgm-bin., guix-commits, 2024/06/18