blob: 4646e19df228270335a880d47c794edf8a7d08eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Windows Setuptools Build Instructions
======================================
1. Install gtk+ bundle from gtk.org (to C:\GTK for example)
2. Install Python2.6
3. Install pycairo and pygobject
4. Install MinGW and MSYS
5. Add the following to your msys environment variables
(open and append to C:\msys\1.0\etc\profile) or set for the session
$ export PATH=/c/GTK/bin:/c/Python26:/c/Python26/Scripts:$PATH
$ export PKG_CONFIG_PATH=/c/GTK/lib/pkgconfig:/c/Python26/Lib/pkgconfig:$PKG_CONFIG_PATH
6. In msys shell, build with
$ python setup.py build --compiler=mingw32 --enable-threading bdist_wininst --user-access-control=auto
Tested with
* gtk+-bundle_2.20.0-20100406_win32.zip
* MinGW-5.16.exe
* MSYS-1.0.11.exe
* python-2.6.5.exe
* pycairo-1.8.6.win32-py2.6.exe
|