diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-21 23:18:04 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 00:42:19 +0900 |
commit | ff6a15eeba86ad9d31c7d90240e6d1513c873982 (patch) | |
tree | 6ecef7023d3e875f492ec8aac641b6c1d51d34d0 | |
parent | 70a2ea62414bcd0bed7c40f11e59e1966b086be4 (diff) |
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
-rw-r--r-- | gnu/packages/jami.scm | 3 |
1 files changed, 1 insertions, 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 |