summaryrefslogtreecommitdiff
path: root/gnu/packages/lua.scm
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2014-04-01 16:59:14 -0400
committerMark H Weaver <mhw@netris.org>2014-04-02 11:27:21 -0400
commita2c03fb1afe133acba7593005e0aa4729960fc0e (patch)
treed8121c72b4c29f588bec24fd48f4828996795eae /gnu/packages/lua.scm
parent0ad2f2e6e9a56d5fc3ac580ace631afbddd63b37 (diff)
gnu: lua: Install man pages in share/man.
* gnu/packages/lua.scm (lua): Use 'system*' instead of 'system'. Add INSTALL_MAN argument to 'make'.
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r--gnu/packages/lua.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 8394afb6411..991cfc6e670 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -1,6 +1,7 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> 2;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
3;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com> 3;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
4;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
4;;; 5;;;
5;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
6;;; 7;;;
@@ -49,8 +50,10 @@
49 'install 50 'install
50 (lambda* (#:key outputs #:allow-other-keys) 51 (lambda* (#:key outputs #:allow-other-keys)
51 (let ((out (assoc-ref outputs "out"))) 52 (let ((out (assoc-ref outputs "out")))
52 (zero? (system 53 (zero? (system* "make" "install"
53 (string-append "make install INSTALL_TOP=" out))))) 54 (string-append "INSTALL_TOP=" out)
55 (string-append "INSTALL_MAN=" out
56 "/share/man/man1")))))
54 (alist-delete 'configure %standard-phases))))) 57 (alist-delete 'configure %standard-phases)))))
55 (home-page "http://www.lua.org/") 58 (home-page "http://www.lua.org/")
56 (synopsis "An embeddable scripting language.") 59 (synopsis "An embeddable scripting language.")