summaryrefslogtreecommitdiffstats
path: root/docs/install-guile.org
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2016-07-11 04:43:03 +0000
committerrsiddharth <s@ricketyspace.net>2016-07-11 04:43:03 +0000
commitf54af87473c5f4edafc54518b86135f7b3b424b6 (patch)
tree5037fd097ba5081f17011fd0218031f63d6cd6b8 /docs/install-guile.org
parent2bf0246b8fc55099a60548ca47c87999ac17e15c (diff)
add section about installing guile.
* README.org (the script): state guile is a per-requisite. * docs/install-guile.org: new file. * docs/Makefile (install_guile_dir, install_guile_out): new targets.
Diffstat (limited to 'docs/install-guile.org')
-rw-r--r--docs/install-guile.org25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/install-guile.org b/docs/install-guile.org
new file mode 100644
index 0000000..96ddab7
--- /dev/null
+++ b/docs/install-guile.org
@@ -0,0 +1,25 @@
+* install guile
+
+on gnu guix, do:
+
+#+BEGIN_SRC bash
+guix package -i guile
+#+END_SRC
+
+on debian based systems, do:
+
+#+BEGIN_SRC bash
+apt-get install guile
+#+END_SRC
+
+on arch based systems, do:
+
+#+BEGIN_SRC bash
+pacman -S guile
+#+END_SRC
+
+on os x, install [[http://brew.sh/][homebrew]], then do:
+
+#+BEGIN_SRC bash
+brew install guile
+#+END_SRC