root/branches/gajim_0.10.1/setup_win32.py

Revision 5488, 1.7 kB (checked in by asterix, 3 years ago)

build and install history_manager.exe under windows

Line 
1## setup_win32.py (run me as python setup_win32.py py2exe -O2)
2##
3## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
4## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published
8## by the Free Software Foundation; version 2 only.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13## GNU General Public License for more details.
14##
15
16from distutils.core import setup
17import py2exe
18import glob
19import sys
20
21sys.path.append('src')
22includes = ['encodings', 'encodings.utf-8',]
23
24opts = {
25    'py2exe': {
26        'includes': 'pango,atk,gobject,encodings,encodings.*',
27        'dll_excludes': [
28            'iconv.dll','intl.dll','libatk-1.0-0.dll',
29            'libgdk_pixbuf-2.0-0.dll','libgdk-win32-2.0-0.dll',
30            'libglib-2.0-0.dll','libgmodule-2.0-0.dll',
31            'libgobject-2.0-0.dll','libgthread-2.0-0.dll',
32            'libgtk-win32-2.0-0.dll','libpango-1.0-0.dll',
33            'libpangowin32-1.0-0.dll'
34        ],
35    }
36}
37
38setup(
39    name = 'Gajim',
40    version = '9',
41    description = 'A Jabber client written in PyGTK',
42    windows = [{'script': 'src/gajim.py',
43                'icon_resources': [(1, 'data/pixmaps/gajim.ico')]},
44               {'script': 'src/history_manager.py',
45                'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}],
46    options=opts,
47
48    data_files=[('.', glob.glob('src/gtkgui.glade')),
49                ('.', glob.glob('src/history_manager.glade')),
50    ],
51)
Note: See TracBrowser for help on using the browser.