gnu: lua: Install man pages in share/man.
* gnu/packages/lua.scm (lua): Use 'system*' instead of 'system'. Add INSTALL_MAN argument to 'make'.
This commit is contained in:
parent
0ad2f2e6e9
commit
a2c03fb1af
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
||||||
;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
|
;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -49,8 +50,10 @@
|
||||||
'install
|
'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(zero? (system
|
(zero? (system* "make" "install"
|
||||||
(string-append "make install INSTALL_TOP=" out)))))
|
(string-append "INSTALL_TOP=" out)
|
||||||
|
(string-append "INSTALL_MAN=" out
|
||||||
|
"/share/man/man1")))))
|
||||||
(alist-delete 'configure %standard-phases)))))
|
(alist-delete 'configure %standard-phases)))))
|
||||||
(home-page "http://www.lua.org/")
|
(home-page "http://www.lua.org/")
|
||||||
(synopsis "An embeddable scripting language.")
|
(synopsis "An embeddable scripting language.")
|
||||||
|
|
Loading…
Reference in New Issue