diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-05-02 07:03:31 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-05-02 07:03:31 -0400 |
commit | d8c64ed556d21d78b79bee3cf39e7c63c064699f (patch) | |
tree | 1eab4813d511529faf8b7975eff2cd21e789e7b6 /README | |
parent | ad2a0438b0308602cb734f1c01dd7e8b34e73a36 (diff) |
Update instructions for building with Guix.
Diffstat (limited to 'README')
-rw-r--r-- | README | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -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 |