mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: bc: Install docs in share/man and share/info.
* gnu/packages/algebra.scm (bc): Pass --mandir and --infodir to configure.
This commit is contained in:
parent
809e9b52bb
commit
e2ca23c584
1 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2012, 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -179,8 +180,14 @@ (define-public bc
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(setenv "CONFIG_SHELL" (which "bash"))
|
(setenv "CONFIG_SHELL" (which "bash"))
|
||||||
(zero?
|
(zero?
|
||||||
(system* "./configure"
|
(system*
|
||||||
(string-append "--prefix=" out)))))
|
"./configure"
|
||||||
|
(string-append "--prefix=" out)
|
||||||
|
;; By default, man and info pages are put in
|
||||||
|
;; PREFIX/{man,info}, but we want them in
|
||||||
|
;; PREFIX/share/{man,info}.
|
||||||
|
(string-append "--mandir=" out "/share/man")
|
||||||
|
(string-append "--infodir=" out "/share/info")))))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(home-page "http://www.gnu.org/software/bc/")
|
(home-page "http://www.gnu.org/software/bc/")
|
||||||
(synopsis "Arbitrary precision numeric processing language")
|
(synopsis "Arbitrary precision numeric processing language")
|
||||||
|
|
Loading…
Reference in a new issue