diff options
author | Mark H Weaver <mhw@netris.org> | 2014-03-20 03:51:09 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-03-20 05:07:42 -0400 |
commit | e2ca23c5845d4537fecab6f7064d935f2e22cda6 (patch) | |
tree | a04c749e58f196a781c4ba07f446a5c2c064dc99 /gnu/packages | |
parent | 809e9b52bb305e7a1cac7fa0e7605102e52772af (diff) | |
download | guix-e2ca23c5845d4537fecab6f7064d935f2e22cda6.tar guix-e2ca23c5845d4537fecab6f7064d935f2e22cda6.tar.gz |
gnu: bc: Install docs in share/man and share/info.
* gnu/packages/algebra.scm (bc): Pass --mandir and --infodir to configure.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/algebra.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index faab4edc85..a1564e000e 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -179,8 +180,14 @@ GP2C, the GP to C compiler, translates GP scripts to PARI programs.") (let ((out (assoc-ref outputs "out"))) (setenv "CONFIG_SHELL" (which "bash")) (zero? - (system* "./configure" - (string-append "--prefix=" out))))) + (system* + "./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))) (home-page "http://www.gnu.org/software/bc/") (synopsis "Arbitrary precision numeric processing language") |