Mercurial > hg
comparison setup.py @ 22358:198e2da3ee20
osx: create dmg with installer instead of zip
OS X would offer to expand the zip so the (multi file) installer inside it
could be run ... but that would leave the expanded zip folder around.
Instead, use a .dmg file that automatically will be mounted - that seems more
common on OS X.
Still, there is two levels of levels of clicking before actually launching the
installer. Having a single file installer would be better ... but seems to be
hard. A more feasible improvement would be some fancy layout inside the .dmg .
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Sun, 31 Aug 2014 10:24:25 +0200 |
parents | 77142de48ae4 |
children | d7f7f1860f00 |
comparison
equal
deleted
inserted
replaced
22357:9c3c3dc14a65 | 22358:198e2da3ee20 |
---|---|
581 data_files=datafiles, | 581 data_files=datafiles, |
582 package_data=packagedata, | 582 package_data=packagedata, |
583 cmdclass=cmdclass, | 583 cmdclass=cmdclass, |
584 distclass=hgdist, | 584 distclass=hgdist, |
585 options={'py2exe': {'packages': ['hgext', 'email']}, | 585 options={'py2exe': {'packages': ['hgext', 'email']}, |
586 'bdist_mpkg': {'zipdist': True, | 586 'bdist_mpkg': {'zipdist': False, |
587 'license': 'COPYING', | 587 'license': 'COPYING', |
588 'readme': 'contrib/macosx/Readme.html', | 588 'readme': 'contrib/macosx/Readme.html', |
589 'welcome': 'contrib/macosx/Welcome.html', | 589 'welcome': 'contrib/macosx/Welcome.html', |
590 }, | 590 }, |
591 }, | 591 }, |