gnu: expect: Install man pages in share/man.

* gnu/packages/tcl.scm (expect): Add --mandir configure flag.
  Use 'let' to simplify configure flags generation.
This commit is contained in:
Mark H Weaver 2014-04-01 17:56:57 -04:00
parent 7575778969
commit 988cecfd4f
1 changed files with 6 additions and 8 deletions

View File

@ -95,14 +95,12 @@
("tcl" ,tcl)))
(arguments
'(#:configure-flags
(list (string-append "--with-tcl="
(assoc-ref %build-inputs "tcl")
"/lib")
(string-append "--with-tclinclude="
(assoc-ref %build-inputs "tcl")
"/include")
(string-append "--exec-prefix="
(assoc-ref %outputs "out")))
(let ((out (assoc-ref %outputs "out"))
(tcl (assoc-ref %build-inputs "tcl")))
(list (string-append "--with-tcl=" tcl "/lib")
(string-append "--with-tclinclude=" tcl "/include")
(string-append "--exec-prefix=" out)
(string-append "--mandir=" out "/share/man")))
#:phases (alist-cons-before
'configure 'set-path-to-stty