Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 1.84 KB

HowToInstall.md

File metadata and controls

71 lines (49 loc) · 1.84 KB

How to install

Pharo & Squeak 5

You can use Metacello:

Metacello new
  baseline: 'MessagePack';
  repository: 'github://msgpack/msgpack-smalltalk/repository';
  load.

If you prefer development branch:

Metacello new
  baseline: 'MessagePack';
  repository: 'github://msgpack/msgpack-smalltalk:develop/repository';
  load.

Squeak 4

Hosted on SqueakSource Repository. (http://www.squeaksource.com/MessagePack.html).

From Monticello:

MCHttpRepository
    location: 'http://www.squeaksource.com/MessagePack'
    user: ''
    password: ''

You can also use Installer:

Installer squeaksource
    project: 'MetacelloRepository';
    install: 'ConfigurationOfMessagePack'. 
(Smalltalk at: #ConfigurationOfMessagePack) perform: #load.

VisualWorks

Hosted on Public Store Repository. http://www.cincomsmalltalk.com/publicRepository/MessagePack-All(Bundle).html

You can also download parcels: http://code.google.com/p/messagepack-st/source/browse/#hg%2FVisualWorks

VA Smalltalk

Hosted on VAStGoodies.com.

Core: MessagePack. Tests: MessagePackTests.

You can also download .dat files: http://code.google.com/p/messagepack-st/source/browse/#hg%2FVA%20Smalltalk

Dolphin Smalltalk

Hosted on Google Code site (old version).

Zipped: MessagePack-Dolphin.zip. Sources: MessagePack.

Download the zipped pac file: MessagePack-Dolphin.zip and follow the instruction on README file.