Skip to content

Commit

Permalink
Builder: Preparations for a 64-bit Mac OS X distribution package
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 26, 2012
1 parent 52a4bb0 commit 6db5910
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions distrib/builder/event.py
Expand Up @@ -35,14 +35,16 @@ def __init__(self, build=None):
self.packageName = {'doomsday': 'Doomsday',
'fmod': 'FMOD Ex Audio Plugin'}

# Platforms: Name File ext sys_id()
self.oses = [('Windows (x86)', '.exe', 'win32-32bit'),
('Mac OS X 10.4+ (i386/ppc)', '.dmg', 'darwin-32bit'),
('Ubuntu (x86)', 'i386.deb', 'linux2-32bit'),
('Ubuntu (x86_64)', 'amd64.deb', 'linux2-64bit')]
# Platforms: Name File ext sys_id()
self.oses = [('Windows (x86)', '.exe', 'win32-32bit'),
('Mac OS X 10.4+ (ppc/i386)', '.dmg', 'darwin-32bit'),
('Mac OS X 10.6+ (x86_64/i386)', '64bit.dmg', 'darwin-64bit'),
('Ubuntu (x86)', 'i386.deb', 'linux2-32bit'),
('Ubuntu (x86_64)', 'amd64.deb', 'linux2-64bit')]

self.platId = {'win32-32bit': 'win-x86',
'darwin-32bit': 'mac10_4-x86-ppc',
'darwin-64bit': 'mac10_6-x86-x86_64',
'linux2-32bit': 'linux-x86',
'linux2-64bit': 'linux-x86_64'}

Expand Down

0 comments on commit 6db5910

Please sign in to comment.