mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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>
This commit is contained in:
parent
56551281a5
commit
a84ceaa8b2
1 changed files with 15 additions and 1 deletions
|
@ -18084,8 +18084,16 @@ (define-public gdcm
|
|||
(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 @@ (define-public gdcm
|
|||
"|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
|
||||
|
|
Loading…
Reference in a new issue