guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ff6a15eeba86ad9d31c7d90240e6d1513c873982
Author: Maxim Cournoyer <ma...@guixotic.coop>
AuthorDate: Mon Jul 21 23:18:04 2025 +0900

    gnu: jami-docs: Do not build/install HTML doc.
    
    The HTML doc contains 250 MiB of images, PDFs and even videos.
    
    * gnu/packages/jami.scm (jami-docs) [#:phases] {build}: Remove html from
    targets.
    [#:install-plan]: Do not install html doc.
    
    Change-Id: I1f16395e6c922c04c67c406216202c9898bf9511
---
 gnu/packages/jami.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm
index d2256e19ac..9a9d411b7d 100644
--- a/gnu/packages/jami.scm
+++ b/gnu/packages/jami.scm
@@ -360,13 +360,12 @@ P2P-DHT.")
         #~(modify-phases %standard-phases
             (add-after 'unpack 'build
               (lambda _
-                (invoke "make" "info" "html" "man" "LANGS="
+                (invoke "make" "info" "man" "LANGS="
                         "-j" (number->string
                               (parallel-job-count))))))
         #:install-plan
         ;; TODO: Install localized info manuals and HTML.
         ''(("_build/out/texinfo/jami.info" "share/info/")
-           ("_build/out/html" "share/doc/jami/")
            ("_build/out/man/jami.1" "share/man/man1/"))))
       (native-inputs
        (list python-minimal

Reply via email to