summaryrefslogtreecommitdiff
path: root/Koopuzzle/windows_build.py
blob: 2f36999e7788c80be9221bab3c39908c961711a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from distutils.core import setup
from py2exe.build_exe import py2exe
import os, os.path, shutil, sys

upxFlag = False
if '-upx' in sys.argv:
    sys.argv.remove('-upx')
    upxFlag = True

dir = 'distrib/windows'

print '[[ Running Koopuzzle Through py2exe! ]]'
print '>> Destination directory: %s' % dir
sys.argv.append('py2exe')

if os.path.isdir(dir): shutil.rmtree(dir)
os.makedirs(dir)

# exclude QtWebKit to save space, plus Python stuff we don't use
excludes = ['encodings', 'doctest', 'pdb', 'unittest', 'difflib', 'inspect',
    'os2emxpath', 'posixpath', 'optpath', 'locale', 'calendar',
    'threading', 'select', 'socket', 'hashlib', 'multiprocessing', 'ssl',
    'PyQt4.QtWebKit', 'PyQt4.QtNetwork']

# set it up
setup(
    name='Koopuzzle',
    version='1.0',
    description='Koopuzzle - Koopatlas Tileset Editor',
    windows=[
        {'script': 'Koopuzzle.py',
         }
    ],
    options={'py2exe':{
        'includes': ['sip', 'encodings', 'encodings.hex_codec', 'encodings.utf_8'],
        'compressed': 1,
        'optimize': 2,
        'excludes': excludes,
        'bundle_files': 3,
        'dist_dir': dir
    }}
)

print '>> Built frozen executable!'

# now that it's built, configure everything
os.unlink(dir + '/w9xpopen.exe') # not needed

if upxFlag:
    if os.path.isfile('upx.exe'):
        print '>> Found UPX, using it to compress the executables!'
        files = os.listdir(dir)
        upx = []
        for f in files:
            if f.endswith('.exe') or f.endswith('.dll') or f.endswith('.pyd'):
                upx.append('"%s/%s"' % (dir,f))
        os.system('upx -9 ' + ' '.join(upx))
        print '>> Compression complete.'
    else:
        print '>> UPX not found, binaries can\'t be compressed.'
        print '>> In order to build Koopuzzle! with UPX, place the upx.exe file into '\
              'this folder.'


print '>> Attempting to copy VC++2008 libraries...'
if os.path.isdir('Microsoft.VC90.CRT'):
    shutil.copytree('Microsoft.VC90.CRT', dir + '/Microsoft.VC90.CRT')
    print '>> Copied libraries!'
else:
    print '>> Libraries not found! The frozen executable will require the '\
          'Visual C++ 2008 runtimes to be installed in order to work.'
    print '>> In order to automatically include the runtimes, place the '\
          'Microsoft.VC90.CRT folder into this folder.'

print '>> Koopuzzle has been frozen to %s!' % dir