1
1
# How to install
2
2
3
- ## Squeak:
3
+ ## Pharo & Squeak 5
4
+
5
+ You can use Metacello:
6
+
7
+ ``` smalltalk
8
+ Metacello new
9
+ baseline: 'MessagePack';
10
+ repository: 'github://msgpack/msgpack-smalltalk/repository';
11
+ load.
12
+ ```
13
+
14
+ If you prefer development branch:
15
+
16
+ ``` smalltalk
17
+ Metacello new
18
+ baseline: 'MessagePack';
19
+ repository: 'github://msgpack/msgpack-smalltalk:develop/repository';
20
+ load.
21
+ ```
22
+
23
+ ## Squeak 4
4
24
5
25
Hosted on SqueakSource Repository.
6
26
(http://www.squeaksource.com/MessagePack.html ).
@@ -23,35 +43,15 @@ Installer squeaksource
23
43
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.
24
44
```
25
45
26
- ## Pharo:
27
-
28
- You can use Metacello:
29
-
30
- ``` smalltalk
31
- Metacello new
32
- baseline: 'MessagePack';
33
- repository: 'github://msgpack/msgpack-smalltalk/repository';
34
- load.
35
- ```
36
-
37
- If you prefer development branch:
38
-
39
- ``` smalltalk
40
- Metacello new
41
- baseline: 'MessagePack';
42
- repository: 'github://msgpack/msgpack-smalltalk:develop/repository';
43
- load.
44
- ```
45
-
46
- ## VisualWorks:
46
+ ## VisualWorks
47
47
48
48
Hosted on [ Public Store Repository] ( http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page ) .
49
49
http://www.cincomsmalltalk.com/publicRepository/MessagePack-All (Bundle).html
50
50
51
51
You can also download parcels:
52
52
http://code.google.com/p/messagepack-st/source/browse/#hg%2FVisualWorks
53
53
54
- ## VA Smalltalk:
54
+ ## VA Smalltalk
55
55
56
56
Hosted on [ VAStGoodies.com] ( http://vastgoodies.com ) .
57
57
@@ -61,11 +61,11 @@ Tests: [MessagePackTests](http://vastgoodies.com/maps/MessagePack%20Tests).
61
61
You can also download .dat files:
62
62
http://code.google.com/p/messagepack-st/source/browse/#hg%2FVA%20Smalltalk
63
63
64
- ## Dolphin Smalltalk:
64
+ ## Dolphin Smalltalk
65
65
66
66
Hosted on [ Google Code site] ( < http://messagepack-st.googlecode.com > ) (old version).
67
67
68
68
Zipped: [ MessagePack-Dolphin.zip] ( http://messagepack-st.googlecode.com/hg/Dolphin%20Smalltalk/MessagePack-Dolphin.zip ) .
69
69
Sources: [ MessagePack] ( http://code.google.com/p/messagepack-st/source/browse/#hg%2FDolphin%20Smalltalk%2FMessagePack ) .
70
70
71
- Download the zipped pac file: MessagePack-Dolphin.zip and follow the instruction on README file.
71
+ Download the zipped pac file: MessagePack-Dolphin.zip and follow the instruction on README file.
0 commit comments