aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorBruno Victal <mirai@makinata.eu>2023-10-09 21:06:37 +0100
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:42:13 +0200
commit55ce97b138197ec836b63b2b3481fdedc75c3ef7 (patch)
tree3c8c3f7b314a2770469f0e8b04de3a30b6d90daa /gnu
parentb1fde7621e2bec132583b834e71cd03d6e9e784b (diff)
downloadguix-55ce97b138197ec836b63b2b3481fdedc75c3ef7.tar.gz
guix-55ce97b138197ec836b63b2b3481fdedc75c3ef7.zip
gnu: alsa-utils: Build manpages.
* gnu/packages/linux.scm (alsa-utils)[arguments]<#:configure-flags>: Re-enable xmlto for building manpages. [inputs]: Move xmlto to … [native-inputs]: … here and restyle. Add docbook-xml-4.2 and docbook-xsl. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index cc87be5260..bbd08564d2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3066,10 +3066,7 @@ MIDI functionality to the Linux-based operating system.")
"09m4dnn4kplawprd2bl15nwa0b4r1brab3x44ga7f1fyk7aw5zwq"))))
(build-system gnu-build-system)
(arguments
- ;; XXX: Disable man page creation until we have DocBook.
- '(#:configure-flags (list "--disable-xmlto"
-
- ;; The udev rule is responsible for restoring
+ '(#:configure-flags (list ;; The udev rule is responsible for restoring
;; the volume.
(string-append "--with-udev-rules-dir="
(assoc-ref %outputs "out")
@@ -3092,9 +3089,10 @@ MIDI functionality to the Linux-based operating system.")
"true\n"))
#t)))))
(native-inputs
- `(("gettext" ,gettext-minimal)))
+ (list docbook-xml-4.2 docbook-xsl xmlto
+ gettext-minimal))
(inputs
- (list libsamplerate ncurses alsa-lib xmlto))
+ (list libsamplerate ncurses alsa-lib))
(home-page "http://www.alsa-project.org/")
(synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
(description