ngz pushed a commit to branch tex-team
in repository guix.

commit 4be493081437a904f79770e3afa7bdb78c75a068
Author: Nicolas Goaziou <m...@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")

Reply via email to