From d8c64ed556d21d78b79bee3cf39e7c63c064699f Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 2 May 2021 07:03:31 -0400 Subject: Update instructions for building with Guix. --- README | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/README b/README index 2632c07..a71022d 100644 --- a/README +++ b/README @@ -16,12 +16,16 @@ Created for the 2021 Spring Lisp Game jam. Using the GNU Guix package manager is by far the easiest way get everything you need to build the game from source. + First, make sure the package builds successfully: + + #+BEGIN_SRC sh + guix build -f guix.scm + #+END_SRC + + Then, run it: + #+BEGIN_SRC sh - guix environment -l guix.scm - ./bootstrap - ./configure - make - ./run-game + $(guix build -f guix.scm | tail -1)/bin/the-test-subject #+END_SRC *** Using something other than Guix (hard) @@ -36,10 +40,10 @@ Created for the 2021 Spring Lisp Game jam. Then you can build and run the game: #+BEGIN_SRC sh - ./bootstrap - ./configure - make - ./run-game + ./bootstrap + ./configure + make + ./run-game #+END_SRC ** License -- cgit v1.2.3