guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: cowsay: Swap ‘build’ and ‘install’ phases.


From: Tobias Geerinckx-Rice
Subject: 08/09: gnu: cowsay: Swap ‘build’ and ‘install’ phases.
Date: Thu, 19 Oct 2017 20:15:02 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 6c0c17527159cfb8c3c68fccec1dfa017b964947
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Oct 20 01:38:24 2017 +0200

    gnu: cowsay: Swap ‘build’ and ‘install’ phases.
    
    * gnu/packages/games.scm (cowsay)[arguments]: Invoke ‘install.sh’ during the
    ‘install’ phase.  Delete the ‘build’ phase, as there's nothing to be built.
---
 gnu/packages/games.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 048d597..6709f02 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -261,9 +261,9 @@ the others like yourself, that want what you have.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (delete 'configure)
-         (delete 'install)
-         (replace 'build
+         (delete 'configure)            ; no configure script
+         (delete 'build)                ; nothing to be built
+         (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (zero? (system* "sh" "install.sh"
                              (assoc-ref outputs "out")))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]