forked from unknown-horizons/unknown-horizons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_mac.py
81 lines (68 loc) · 2.6 KB
/
setup_mac.py
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
76
77
78
79
80
81
#!/usr/bin/env python
# ###################################################
# Copyright (C) 2013 The Unknown Horizons Team
# This file is part of Unknown Horizons.
#
# Unknown Horizons is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# ###################################################
# usage:
# copy the full content/ folder into src/Contents/Resources/
# moreover copy the fife dir into the current dir
# details can be found at http://wiki.unknown-horizons.org/w/MacOS_build_notes
import os
# Sets what directory to crawl for files to include
# Relative to location of setup.py; leave off trailing slash
includes_dir = 'src'
# Set the root directory for included files
# Relative to the bundle's Resources folder, so '../../' targets bundle root
includes_target = '../../'
# Initialize an empty list so we can use list.append()
data_includes = []
# Walk the includes directory and include all the files
for root, dirs, filenames in os.walk(includes_dir):
if root is includes_dir:
final = includes_target
else:
final = includes_target + root[len(includes_dir)+1:] + '/'
files = []
for file in filenames:
if (file[0] != '.'):
files.append(os.path.join(root, file))
data_includes.append((final, files))
from setuptools import setup
packages = []
packages.append('horizons')
packages.append('fife')
#Info.plist keys for the app
#Icon.icns must be inside src/Contents/Resources/
plist = {"CFBundleIconFile": "Icon.icns",
"CFBundleDisplayName": "Unknown Horizons",
"CFBundleExecutable": "Unknown Horizons",
"CFBundleIdentifier": "org.unknown-horizons",
"CFBundleName": "Unknown Horizons",
"CFBundleShortVersionString": "0.0.0",
"LSArchitecturePriority": "i386",
"CFBundleVersion": "0.0.0"
}
APP = ['run_uh.py']
OPTIONS = {'argv_emulation': True, 'packages': packages, 'plist':plist}
setup(
app=APP,
data_files=data_includes,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)