Minsky can be built on any of the following platforms:
Windows: Cygwin
Windows: Mingw
Linux: MXE (for running on Windows)
MacOSX
Linux
Presumably, (with effort), it could be built on any posix compliant platform.
The server component and wt client component are experiment implementations for supporting a web-based Minsky client. They are not needed for building and using the standard desktop application.
For building server (experimental)
For bulding wt client (experimental)
On Linux, MinGW and Cygwin, you can use the packaged pango (after possibly having to install development version sof the packages). On Mac, installation from sources seems to be necessary, which involves the whole palaver of GLib, libffi and gettext.
Standard MinGW32 appears to be too old to build modern glib releases. The advice is to use the MinGW64 package instead, or even to build you Windows executable on a Linux box using the MXE cross compilation environment.
Building Boost on Mingw is a bit fragile. The recipe involves
installing Microsoft SDK, which has MASM contained within it. I did this by installing Visual Studio Express, but there may be lighter weight packages from Microsoft for doing this.
For building json_spirit and soci, you need cmake. On MinGW, you can use the normal Windows binary for CMake. Just type (cmake -G "Unix Makefiles" .) - if you don't specify the generator, it will default to Visual Studio.
Because of the antique version of Berkley DB installed by default on MacOS, you will probably need to install a modern 4.x version in order to get ecolab to build on MacOSX.
These packages can be installed to /usr/local or $(HOME)/usr according to preference.
Once the dependencies have been installed, cd to the Minsky source directory, and type "make", which builds the executable "minsky" at that location.
Tktable 2.11 is available through the SourceForge CVS website, however, there are some important bugfixes that are currently only available from the version in the Minsky file releases area. Hopefully, this fixes will be picked up by the Tktable respository.
TkTable doesn't really have a standard install location. I would recommend copying the dynamic library into /usr/local/lib or ~/usr/lib, in which case Minsky will will find it. Otherwise, you will need to edit Minsky's Makefile.
The macosx build of Tcl/Tk, including the prebuilt ActiveTCL distribution is threaded. This causes thread safety problems with Tk. See ticket 13. Unfortunately, turning off threading is not possible in the macosx build, so the unix Tcl/Tk build should be used instead. For development purposes, use the standard X11 build of Tk. Tk for Aqua can be built in the unix folder by specifying --with-aqua on the configure line, but this can only be used for 32 bit builds (not 64). This is how the Minsky Mac binary distritbuion is built.
copied from Home/Building Minsky
Has anyone actually implemented a web based Minsky client? Are there any examples available?