diff options
author | Jochem Raat <jochemraat@gmail.com> | 2015-08-05 19:54:12 +0200 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-08-05 21:19:22 -0400 |
commit | 273c77383226dcce24a2f5af461cb4afb7244f9f (patch) | |
tree | 6f139e357af21789f9cb7ad0d4a86646ccd1ad0a | |
parent | da72c576f0537c0e8925ce00676010a1116d8b59 (diff) |
Update INSTALL.org
Add the Gnu Scientific Library (GSL) to the dependencies and update the
git clone command for sly itself to the new address of the repository
(https://git.dthompson.us/sly.git), since gitorious is down.
-rw-r--r-- | INSTALL.org | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/INSTALL.org b/INSTALL.org index caf276c..bd8ea7f 100644 --- a/INSTALL.org +++ b/INSTALL.org @@ -18,13 +18,23 @@ This assumes that the version of Debian you are running has Guile 2.0.11. + Check the versions available to you with =sudo apt-cache show guile-2.0-dev=. + *Gentoo* #+BEGIN_SRC sh sudo emerge ">=dev-scheme/guile-2.0.11" #+END_SRC - Check the versions available to you with =sudo apt-cache show guile-2.0-dev=. +*** GSL + + The GNU Scientific Library (GSL) is a numerical library for C and C++. + + *Debian* + + #+BEGIN_SRC sh + sudo apt-get install libgsl0-dev + #+END_SRC *** SDL @@ -103,7 +113,7 @@ *GNU/Linux* #+BEGIN_SRC sh - git clone https://gitorious.org/sly/sly.git + git clone https://git.dthompson.us/sly.git cd sly/ ./autogen.sh ./configure --prefix=/usr |