guix-commits
[Top][All Lists]
Advanced

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

11/18: gnu: libnvme: Separate :doc files.


From: guix-commits
Subject: 11/18: gnu: libnvme: Separate :doc files.
Date: Wed, 19 Jul 2023 11:23:38 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 07f436ce1301c9dc6344b3af03f8a159e35edbbd
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 16 02:00:02 2023 +0200

    gnu: libnvme: Separate :doc files.
    
    Also fix the .rst files being dumped in the root of the output.
    
    * gnu/packages/linux.scm (libnvme)[outputs]: Add "doc".
    [arguments]: Install HTML and RST documentation there.
---
 gnu/packages/linux.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index cf67a63331..bfccd1afb7 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5142,11 +5142,14 @@ Translation (@dfn{SAT}) are also supported.")
                (base32 "1wq8bw60l090z2kb717wyzk5wz1jrcn31ykdaa7k9pz9w79v0v67"))
               (file-name (git-file-name name version))))
     (build-system meson-build-system)
+    (outputs (list "out" "doc"))        ; docs are 80% of all output
     (arguments
      (list
-      #:configure-flags #~(list (format #f "-Dhtmldir=~a/share/doc/~a/html"
-                                        #$output #$name)
-                                "-Ddocs-build=true" "-Ddocs=all")))
+      #:configure-flags
+      #~(let ((doc (string-append #$output:doc "/share/doc/" #$name)))
+          (list (string-append "-Dhtmldir=" doc "/html")
+                (string-append "-Drstdir=" doc "/rst")
+                "-Ddocs-build=true" "-Ddocs=all"))))
     (native-inputs (list pkg-config perl python python-sphinx))
     ;; libnvme.pc, libnvme-mi.pc lists these in Requires.private.
     (propagated-inputs (list dbus json-c openssl))



reply via email to

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