[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/124: gnu: glib-with-documentation: Make some cosmetic changes.
From: |
guix-commits |
Subject: |
05/124: gnu: glib-with-documentation: Make some cosmetic changes. |
Date: |
Mon, 30 Aug 2021 16:28:38 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 5b2c7d356d8fa4b7bca0dc2e1b97ce5c4b10124e
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Thu Mar 11 09:37:00 2021 -0500
gnu: glib-with-documentation: Make some cosmetic changes.
* gnu/packages/glib.scm (glib-with-documentation): Make some cosmetic
changes.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/glib.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 2a09f71..c8790c1 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -320,8 +320,8 @@ functions for strings and common data structures.")
(properties (alist-delete 'hidden? (package-properties glib)))
(outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
(native-inputs
- `(("gtk-doc" ,gtk-doc) ; for the doc
- ("docbook-xml" ,docbook-xml)
+ `(("docbook-xml" ,docbook-xml)
+ ("gtk-doc" ,gtk-doc) ; for the doc
("libxml2" ,libxml2)
,@(package-native-inputs glib)))
(arguments
@@ -332,12 +332,13 @@ functions for strings and common data structures.")
`(modify-phases ,phases
(add-after 'install 'move-doc
(lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (doc (assoc-ref outputs "doc"))
- (html (string-append "/share/gtk-doc")))
- (copy-recursively (string-append out html)
- (string-append doc html))
- (delete-file-recursively (string-append out html))
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc"))
+ (html (string-append "/share/gtk-doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out html)
+ (string-append doc html))
#t)))))))))
;;; TODO: Merge into glib as a 'static' output on core-updates.
- branch wip-gnome created (now aa69452), guix-commits, 2021/08/30
- 01/124: gnu: glib: Make some cosmetic changes., guix-commits, 2021/08/30
- 02/124: gnu: glib: Update to 2.68.0., guix-commits, 2021/08/30
- 03/124: gnu: glib: Enable man pages., guix-commits, 2021/08/30
- 04/124: gnu: glib: Update synopsis, description and home-page., guix-commits, 2021/08/30
- 05/124: gnu: glib-with-documentation: Make some cosmetic changes.,
guix-commits <=
- 09/124: gnu: libsigc++: Enable documentation., guix-commits, 2021/08/30
- 11/124: gnu: glibmm: Enable documentation., guix-commits, 2021/08/30
- 07/124: gnu: Temporarily use glib without documentation., guix-commits, 2021/08/30
- 08/124: gnu: libsigc++: Update to 3.0.6., guix-commits, 2021/08/30
- 10/124: gnu: glibmm: Update to 2.68.0., guix-commits, 2021/08/30
- 12/124: gnu: Add libsigc++-2., guix-commits, 2021/08/30
- 14/124: gnu: gtk-doc: Change build-system., guix-commits, 2021/08/30
- 15/124: gnu: gtk-doc: Correct inputs., guix-commits, 2021/08/30
- 16/124: gnu: gtk-doc: Update to 1.32., guix-commits, 2021/08/30
- 17/124: gnu: gtk-doc: Enable help., guix-commits, 2021/08/30