Changeset 1515
- Timestamp:
- 11/29/07 11:37:18 (1 year ago)
- Files:
-
- trunk/build_release.bat (added)
- trunk/scripts/win32-installer-script.py (deleted)
- trunk/setup.cfg (modified) (1 diff)
- trunk/setup.py (modified) (3 diffs)
- trunk/wix/bitmaps/aksy-dialog.bmp (added)
- trunk/wix/build_wix.py (added)
- trunk/wix/clight.bat (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.cfg
r1390 r1515 4 4 5 5 [bdist_wininst] 6 install-script=win32-installer-script.pytrunk/setup.py
r1475 r1515 9 9 from distutils.dist import Distribution 10 10 from distutils.command.build_ext import build_ext 11 import platform, os.path 11 import platform, os.path, sys 12 12 13 13 version = "0.3" … … 21 21 deps.append("fuse-python >= 0.2pre3") 22 22 return deps 23 24 def scripts():25 scripts = []26 27 import sys28 if len(sys.argv) > 1 and sys.argv[1] == "bdist_wininst":29 scripts.append("scripts\\win32-installer-script.py")30 return scripts31 23 32 24 def customize_for_platform(ext, compiler_type): … … 108 100 platforms = [ "any" ], 109 101 download_url = base_url + "/downloads", 110 scripts = scripts(),111 102 install_requires = install_requires(), 103 scripts = [], 112 104 entry_points = { 113 105 'console_scripts': [ trunk/wix/clight.bat
r1512 r1515 2 2 pushd wix 3 3 del aksy-%VERSION%.msi 4 build_wix.py 4 5 candle -v aksy-installer.wxs -out aksy-installer.wixobj 5 6 light aksy-installer.wixobj -ext WixUIExtension -out aksy-%VERSION%.msi -cultures:en-us
