diff options
author | David Thompson <dthompson@member.fsf.org> | 2013-09-09 18:10:20 -0400 |
---|---|---|
committer | David Thompson <dthompson@member.fsf.org> | 2013-09-09 18:10:20 -0400 |
commit | 1494658c81e4e6cac7c512cdd49a2b32e3181e36 (patch) | |
tree | 5cf363d7efb3e8dcd1d4dfccaf77c31837f41a35 | |
parent | fa3a92e27a9699207657bb1c538d55182a667850 (diff) |
Improve the INSTALL doc.
> >>36631388
> I posted this the other day, but you didn't respond so I couldn't be sure you saw.
>
> Anyways, I'm the fellow that was installing guile-2d, and got a syntax
> error in mvars because of the docstring in the caselambda.
>
> I downloaded the fixed version of the file, and finally finished the
> installation. Now I've just got to learn guile...
>
> While I was installing I wrote a few notes.
>
> 1) The tar zxf guile-sdl-<version> did not work, but tar xf
> guile-sdl-<version> did.
>
> 2) Guile isn't mentioned in the INSTALL.org. It was obvious this was
> my problem, and it just took a command to fix it, but it still
> would've been easier had you explicitly listed it.
>
> 3) https://gitorious.org/guile-figl/guile-figl needs ".git" added to
> the end of it.
>
> 4) libfreeimage3 and libftgl2 weren't enough. I ended up needing to
> install ftgl-dev and libfreeimage-dev. Not sure if both were needed,
> or just the dev versions.
-rw-r--r-- | INSTALL.org | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/INSTALL.org b/INSTALL.org index d2ac6f7..e2a2fff 100644 --- a/INSTALL.org +++ b/INSTALL.org @@ -10,6 +10,16 @@ ** Install dependencies +*** Guile + + *Debian* + + #+BEGIN_SRC sh + sudo apt-get install guile-2.0-dev + #+END_SRC + + Guile 2.0.9 or higher is highly recommended. + *** SDL SDL is a very popular, cross-platform game library. @@ -26,7 +36,7 @@ *Debian* #+BEGIN_SRC sh - sudo apt-get install libfreeimage3 + sudo apt-get install libfreeimage-dev #+END_SRC *** FTGL @@ -36,7 +46,7 @@ *Debian* #+BEGIN_SRC sh - sudo apt-get install libftgl2 + sudo apt-get install libftgl-dev #+END_SRC *** guile-sdl @@ -48,7 +58,7 @@ *Debian* #+BEGIN_SRC sh - tar zxf guile-sdl-<version> + tar xf guile-sdl-<version>.tar.xz cd guile-sdl-<version>/ ./configure --prefix=/usr make @@ -68,7 +78,7 @@ *Debian* #+BEGIN_SRC sh - git clone https://gitorious.org/guile-figl/guile-figl + git clone https://gitorious.org/guile-figl/guile-figl.git cd guile-figl autoreconf -vif ./configure --prefix=/usr |