[Pyobjc-dev] bundlebuilder.py: standalone app support
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2002-11-26 00:46:43
|
Folks, I've added support for building standalone apps to bundlebuilder.py. (I've checked it in into the Python CVS tree, I'm sure someone will do a new import into the pyobjc project, I'm going to bed now...) I've tested it with Examples/CurrencyConverter and Examples/TableModel. Requirement #1: it needs freeze's modulefinder.py to be on sys.path. (Work is in progress to add it to the standard lib for 2.3, so maybe this is also a candidate for the MPCompat directory.) Requirement #2: a *static* build of Python. It currently does *not* work for Python.framework. Making this work might not be trivial. To build a standalone app: % python buildapp.py --standalone build To strip all binaries from debugging info: % python buildapp.py --standalone --strip build (This makes the app shrink to more than half the size.) There are some additional options, check --help. Just |