Ticket #110: nodebox_py25_standalone.diff
| File nodebox_py25_standalone.diff, 1.2 kB (added by flavio.curella@…, 13 months ago) |
|---|
-
Users/go/working_copies/nodebox/src/macsetup.py
53 53 ], 54 54 app = [dict(script='macboot.py', plist=plist)], 55 55 options = dict(py2app=dict( 56 includes = ['DrawingPrimitives', ' Numeric'],56 includes = ['DrawingPrimitives', 'numpy'], 57 57 optimize = 2, 58 58 )), 59 59 ) -
Users/go/working_copies/nodebox/src/macbuild.sh
3 3 4 4 # First, make the help files. 5 5 cd ../helpsrc 6 python2. 3makehelp.py6 python2.5 makehelp.py 7 7 8 8 # Now build the application. 9 9 # Semi-standalone means it bundles all the required modules, 10 10 # but not Python itself. 11 11 cd ../src 12 python2. 3 macsetup.py py2app --semi-standalone12 python2.5 macsetup.py py2app 13 13 14 14 # Due to a bug in PyObjC, the included site.py file is incorrect. 15 15 # We provide our own.
