diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2021-05-15 00:05:18 +0900 | 
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-05-15 00:05:18 +0900 | 
| commit | 47650cd5814c4b2cd31bc0e5ca3e0d053dd0c423 (patch) | |
| tree | 246db1082b672bd90efa58724f8946755d927643 | |
| parent | 54204d82c5b728cc9558fa9a3d97f82413a8b950 (diff) | |
Update README.md
* README.md: Update.
| -rw-r--r-- | README.md | 40 | 
1 files changed, 39 insertions, 1 deletions
@@ -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  | 
