From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:55494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMbJ3-0005Te-G8 for guix-patches@gnu.org; Fri, 03 May 2019 12:45:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMbJ2-0004u3-6N for guix-patches@gnu.org; Fri, 03 May 2019 12:45:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36008) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMbJ2-0004tv-1E for guix-patches@gnu.org; Fri, 03 May 2019 12:45:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hMbJ1-0007Mg-TM for guix-patches@gnu.org; Fri, 03 May 2019 12:45:03 -0400 Subject: [bug#35446] [PATCH v2 21/24] gnu: calibre: Install man pages. Resent-Message-ID: From: Brendan Tildesley Date: Sat, 4 May 2019 02:42:29 +1000 Message-Id: <20190503164232.1799-21-mail@brendan.scot> In-Reply-To: <20190503164232.1799-1-mail@brendan.scot> References: <20190503164232.1799-1-mail@brendan.scot> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35446@debbugs.gnu.org * gnu/packages/ebook.scm (calibre): Install man pages. --- gnu/packages/ebook.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 94d3b9a43a..4bdba38c2a 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -203,6 +203,12 @@ (invoke "python2" "setup.py" "mathjax""--system-mathjax" "--path-to-mathjax" (string-append (assoc-ref inputs "js-mathjax") "/share/javascript/mathjax")) (invoke "python2" "setup.py" "rapydscript"))) + (add-after 'install 'install-man-pages + (lambda* (#:key outputs #:allow-other-keys) + (copy-recursively + "man-pages" + (string-append (assoc-ref outputs "out") "/share/man")) + #t)) ;; The font TTF files are used in some miscellaneous tests, so we ;; unbundle them here to avoid patching the tests. (add-after 'install 'unbundle-font-liberation -- 2.21.0