SkyEagle888
SkyEagle888

Reputation: 1009

MSCGen for Mac OS X

I am starting a new SW project between client and server and would like to utilize some SW tools for constructing the message flow.

Is there any one has MSCGen that is built for Mac OS X ?

Upvotes: 2

Views: 2874

Answers (2)

Graham Stead
Graham Stead

Reputation: 71

In order of preference, I suggest:

Install using Homebrew (assumes you have previously installed Homebrew):

brew install mscgen

Another way is to use Macports, but Macports still uses version 0.18:

sudo port install mscgen

And finally, I compiled mscgen 0.2 on Mac OS/X 10.7.3 just now:

wget http://www.mcternan.me.uk/mscgen/software/mscgen-src-0.20.tar.gz
tar xvfz mscgen-src-0.20.tar.gz 
cd mscgen-0.20/
./configure
make
make check
sudo make install # conflicts with Homebrew

Upvotes: 7

sfinnie
sfinnie

Reputation: 9952

websequencediagrams.com ?

Upvotes: 1

Related Questions