2005-10-14 23:20:12 +02:00
|
|
|
## setup_win32.py (run me as python setup_win32.py py2exe -O2)
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2014-01-02 09:33:54 +01:00
|
|
|
## Copyright (C) 2003-2014 Yann Leboulanger <asterix AT lagaule.org>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2005-04-01 01:26:05 +02:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-10-22 13:13:13 +02:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2005-04-01 01:26:05 +02:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2005-04-01 01:26:05 +02:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-10-22 13:13:13 +02:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
2005-04-01 01:26:05 +02:00
|
|
|
|
2010-10-26 17:28:08 +02:00
|
|
|
from cx_Freeze import setup, Executable
|
2005-04-01 01:26:05 +02:00
|
|
|
import glob
|
2008-05-19 12:58:03 +02:00
|
|
|
import sys
|
2008-04-07 15:14:06 +02:00
|
|
|
import os
|
2005-04-01 01:26:05 +02:00
|
|
|
|
2008-05-19 12:58:03 +02:00
|
|
|
sys.path.append('src')
|
2008-08-15 05:20:23 +02:00
|
|
|
# Use local gtk folder instead of the one in PATH that is not latest gtk
|
2008-05-19 12:58:03 +02:00
|
|
|
if 'gtk' in os.listdir('.'):
|
2008-04-07 15:14:06 +02:00
|
|
|
sys.path.append('gtk/bin')
|
2005-04-01 01:26:05 +02:00
|
|
|
|
2010-10-26 17:28:08 +02:00
|
|
|
options = {
|
|
|
|
'build_exe': {
|
2012-12-23 16:23:43 +01:00
|
|
|
'includes': ['Gdk.KEY_, 'dumbdbm', 'dbhash', 'bsddb', 'new',
|
2012-08-29 10:38:15 +02:00
|
|
|
'goocanvas', 'Crypto.PublicKey.DSA', 'Crypto.Hash.HMAC',
|
2014-01-26 19:36:23 +01:00
|
|
|
'numbers', 'win32com.client', 'win32com.server', 'HTMLParser'],
|
2010-10-26 17:28:08 +02:00
|
|
|
'base': 'Win32GUI',
|
|
|
|
'bin_excludes': [
|
2010-02-08 15:08:40 +01:00
|
|
|
'iconv.dll', 'intl.dll', 'libatk-1.0-0.dll',
|
|
|
|
'libgdk_pixbuf-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
|
2010-10-26 17:28:08 +02:00
|
|
|
'libgio-2.0-0.dll',
|
2010-02-08 15:08:40 +01:00
|
|
|
'libglib-2.0-0.dll', 'libgmodule-2.0-0.dll',
|
|
|
|
'libgobject-2.0-0.dll', 'libgthread-2.0-0.dll',
|
|
|
|
'libgtk-win32-2.0-0.dll', 'libpango-1.0-0.dll',
|
|
|
|
'libpangowin32-1.0-0.dll', 'libcairo-2.dll',
|
|
|
|
'libpangocairo-1.0-0.dll', 'libpangoft2-1.0-0.dll',
|
2014-03-09 10:25:26 +01:00
|
|
|
'libfarstream-0.1-0.dll', 'libgcc_s_dw2-1.dll',
|
|
|
|
'libgstbase-0.10-0.dll', 'libgstcontroller-0.10-0.dll',
|
|
|
|
'libgstdataprotocol-0.10-0.dll', 'libgstinterfaces-0.10-0.dll',
|
|
|
|
'libgstnet-0.10-0.dll', 'libgstreamer-0.10-0.dll',
|
|
|
|
'libiconv-2.dll', 'libxml2.dll', 'libxml2-2.dll',
|
2005-04-01 01:26:05 +02:00
|
|
|
],
|
2010-10-26 17:28:08 +02:00
|
|
|
}
|
2005-04-01 01:26:05 +02:00
|
|
|
}
|
|
|
|
|
2008-07-16 01:46:24 +02:00
|
|
|
|
2005-04-01 01:26:05 +02:00
|
|
|
setup(
|
2010-02-08 15:08:40 +01:00
|
|
|
name='Gajim',
|
2012-08-29 10:38:15 +02:00
|
|
|
version='0.15.1',
|
2010-02-08 15:08:40 +01:00
|
|
|
description='A full featured Jabber client',
|
|
|
|
author='Gajim Development Team',
|
2011-09-17 22:22:56 +02:00
|
|
|
url='http://gajim.org/',
|
|
|
|
download_url='http://gajim.org/downloads.php',
|
2010-02-08 15:08:40 +01:00
|
|
|
license='GPL',
|
2010-10-26 17:28:08 +02:00
|
|
|
options=options,
|
|
|
|
executables=[Executable('src/gajim.py', icon='data/pixmaps/gajim.ico'),
|
|
|
|
Executable('src/history_manager.py', icon='data/pixmaps/gajim.ico')],
|
2005-04-01 01:26:05 +02:00
|
|
|
)
|