[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43823] [PATCH v2 2/3] gnu: knot: Build the Info manual.
From: |
Simon South |
Subject: |
[bug#43823] [PATCH v2 2/3] gnu: knot: Build the Info manual. |
Date: |
Tue, 6 Oct 2020 09:56:44 -0400 |
* gnu/packages/dns.scm (knot)[arguments]: Add "build-info" and
"install-info" phases.
[native-inputs]: Add texinfo and python-sphinx.
---
gnu/packages/dns.scm | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index d791c45f69..b3dd68ccbd 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -69,6 +69,7 @@
#:use-module (gnu packages shells)
#:use-module (gnu packages sphinx)
#:use-module (gnu packages swig)
+ #:use-module (gnu packages texinfo)
#:use-module (gnu packages tls)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
@@ -841,6 +842,9 @@ Extensions} (DNSSEC).")
;; This is needed even when using ‘make config_dir=... install’.
(substitute* "src/Makefile.in" (("\\$\\(INSTALL\\) -d") "true"))
#t))
+ (add-after 'build 'build-info
+ (lambda _
+ (invoke "make" "info")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@@ -848,13 +852,18 @@ Extensions} (DNSSEC).")
(etc (string-append doc "/examples/etc")))
(invoke "make"
(string-append "config_dir=" etc)
- "install")))))))
+ "install"))))
+ (add-after 'install 'install-info
+ (lambda _
+ (invoke "make" "install-info"))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)
("pkg-config" ,pkg-config)
- ("ragel" ,ragel)))
+ ("python-sphinx" ,python-sphinx)
+ ("ragel" ,ragel)
+ ("texinfo" ,texinfo)))
(inputs
`(("fstrm" ,fstrm)
("gnutls" ,gnutls)
--
2.28.0
- [bug#43823] [PATCH 0/3] Knot: Enable DoH; build Info manual; work on aarch64-linux, Simon South, 2020/10/05
- [bug#43823] [PATCH 1/3] gnu: knot: Enable DNS-over-HTTPS support in kdig., Simon South, 2020/10/05
- [bug#43823] [PATCH 3/3] gnu: knot: Fix test failure on aarch64-linux., Simon South, 2020/10/05
- [bug#43823] [PATCH 2/3] gnu: knot: Build the Info manual., Simon South, 2020/10/05
- [bug#43823] [PATCH 0/3] Knot: Enable DoH; build Info manual; work on aarch64-linux, Tobias Geerinckx-Rice, 2020/10/05
- [bug#43823] [PATCH v2 0/3] Knot: Enable DoH; build Info Manual; work on aarch64-linux, Simon South, 2020/10/06