From 47650cd5814c4b2cd31bc0e5ca3e0d053dd0c423 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 15 May 2021 00:05:18 +0900 Subject: Update README.md * README.md: Update. --- README.md | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a4b56f1..7abb4c1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,41 @@ # Guile SICP Picture Language -An implementation of SICP picture language for GNU Guile. +SICP's picture language for Gulie. + +## Installation + +### Install with Guix + +Add `tojo-tokyo` channel to `~/.config/guix/channels.scm`: + + (cons* (channel + (name 'tojo-tokyo) + (url "https://git.tojo.tokyo/tojo-tokyo-guix-channel.git")) + %default-channels) + +And proceed following: + + guix pull + guix install guile-sicp-picture-language + +### Install from the tarball + +To install from the tarball, proceed the following: + + wget https://files.tojo.tokyo/guile-sicp-picture-language/guile-sicp-picture-language-0.2.2.tar.gz + tar xvf guile-sicp-picture-language-0.2.2.tar.gz + cd guile-sicp-picture-language + ./configure + make + make install + +### Install from the source + +To install from the source, proceed the following: + + git clone https://git.tojo.tokyo/guile-sicp-picture-language.git + cd guile-sicp-picture-language + ./bootstrap + ./configure + make + make install -- cgit v1.2.3