aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 7abb4c1ef49bc6938e656ce3c64db8ffab0edf03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Guile SICP Picture Language

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