guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: gdcm: Add documentation.


From: guix-commits
Subject: 03/03: gnu: gdcm: Add documentation.
Date: Wed, 25 Jan 2023 17:51:39 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit a84ceaa8b2e8e121957afea1d1d3fe7c8141cb8d
Author: Tor-björn Claesson <tclaesson@gmail.com>
AuthorDate: Sat Jan 14 19:03:39 2023 +0200

    gnu: gdcm: Add documentation.
    
    * gnu/packages/bioinformatics.scm (gdcm)[outputs]: New field.
    [arguments]: Add #:phases.  Augment #:configure-flags.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/bioinformatics.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 645c439b64..8c75607a65 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -18084,8 +18084,16 @@ module capable of computing base-level alignments for 
very large sequences.")
                (base32
                 "1rf0p7dnakjry0fa6ax1h762bn0l5n6ibfdxn077mjvwgpqan51l"))))
     (build-system cmake-build-system)
+    (outputs '("out" "doc"))
     (arguments
      (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'build 'set-HOME
+            ;; The build spams ‘Fontconfig error: No writable cache
+            ;; directories’ in a seemingly endless loop otherwise.
+            (lambda _
+              (setenv "HOME" "/tmp"))))
       #:configure-flags
       #~(list "-DGDCM_BUILD_TESTING=true"
               (string-append "-DCMAKE_CTEST_ARGUMENTS=-E;"
@@ -18096,7 +18104,13 @@ module capable of computing base-level alignments for 
very large sequences.")
                              "|TestAnonymizer4"
                              "|TestPrinter1"
                              "|TestEcho"
-                             "|TestFind'"))))
+                             "|TestFind'")
+              "-DGDCM_DOCUMENTATION:BOOL=ON"
+              "-DGDCM_PDF_DOCUMENTATION:BOOL=OFF"
+              (string-append "-DGDCM_INSTALL_DOC_DIR="
+                             #$output:doc "/share/doc/" #$name)
+              "-DGDCM_BUILD_DOCBOOK_MANPAGES:BOOL=OFF"))) ; TODO: need ‘xsl-ns’
+    (native-inputs (list doxygen graphviz))
     (home-page "https://gdcm.sourceforge.net/wiki/index.php/Main_Page";)
     (synopsis "Grassroots DICOM library")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]