summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-05-02 07:03:31 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-05-02 07:03:31 -0400
commitd8c64ed556d21d78b79bee3cf39e7c63c064699f (patch)
tree1eab4813d511529faf8b7975eff2cd21e789e7b6
parentad2a0438b0308602cb734f1c01dd7e8b34e73a36 (diff)
Update instructions for building with Guix.
-rw-r--r--README22
1 files 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