diff options
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 |