Fixed File->Quit menu.
[jben2_gui.git] / INSTALL.txt
blob3c81d4f1d0b0335065c2a7f2b027fa4e107f8a64
1 POSIX build instructions (Linux, BSD, etc.)\r
2 ===========================================\r
3 \r
4 J-Ben uses the standard "./configure; make; make install" process.\r
5 Just try the following:\r
6 \r
7   ./configure && make\r
8   make install\r
9 \r
10 To run the program:\r
12   python -m jben.main\r
14 "jben_launcher.py" *may* also work, but it has not yet been tested.\r
17 Windows build instructions\r
18 ==========================\r
20 Prerequisites:\r
22 1. MinGW, MSys, and the autotools.  (If you don't have these, go to\r
23    http://sourceforge.net/projects/mingw/files/, and download the\r
24    "latest version": mingw-get-inst-XXXXXXXX.exe.)\r
26 2. GTK+ development libraries.  Get the GTK+ development bundle from\r
27    www.gtk.org.  Unzip it somewhere and insert its bin folder into\r
28    your PATH (preferably at the beginning of the PATH to avoid\r
29    conflicts with other libraries).\r
31 3. Inno Setup, for creating the installer.\r
33 Instructions are as follows:\r
35 1. Do the basic build:\r
37      CFLAGS=-mwindows ./configure && make\r
39 2. Make the py2exe executable:\r
41      cd python; setup.py py2exe\r
43 3. Run the Inno Setup jben.iss file (update as necessary for your environment)\r
45 4. Install the generated executable\r
47 This process has been tested on Windows 7 with:\r
49 - autoconf 2.67\r
50 - automake 1.11.1\r
51 - py2exe 0.6.9\r
52 - Python 2.7\r
53 - GTK bundle 2.22.0-20101016_win32\r
54 - pygtk 2.22.0\r
55 - pygobject 2.26.0\r
56 - pycairo 1.8.10\r