Changeset 2347
- Timestamp:
- 07/22/08 00:33:33 (3 months ago)
- Files:
-
- gaphor-win32-installer/trunk/config.nsi (modified) (1 diff)
- gaphor-win32-installer/trunk/gaphor-setup.nsi (modified) (3 diffs)
- gaphor-win32-installer/trunk/gaphor.bat (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphor-win32-installer/trunk/config.nsi
r2344 r2347 1 1 2 2 !define LOGFILE "$INSTDIR\install.log" 3 4 !define WIN32_LIBS "../gaphor-win32-libs" 3 5 4 6 !define PYTHON_VERSION "${PYVERSION}${PYPATCH}" gaphor-win32-installer/trunk/gaphor-setup.nsi
r2346 r2347 102 102 !include "detect.nsi" 103 103 !include "download.nsi" 104 105 104 106 105 … … 123 122 124 123 Section "GTK+" SecGtk 125 DetailPrint "--- DOWNLOAD GTK+ ---" 126 !insertmacro downloadAndInstall "GTK+" ${GTK_URL} ${GTK_FN} "${GTK_CMD}" 127 Call DetectGTK 128 Pop $GTKOK 129 Pop $GTKPATH 124 125 SectionIn RO 126 127 DetailPrint "--- INSTALL GTK+ ---" 128 ; !insertmacro downloadAndInstall "GTK+" ${GTK_URL} ${GTK_FN} "${GTK_CMD}"; Call DetectGTK 129 ; Pop $GTKOK 130 ; Pop $GTKPATH 131 SetOverwrite ifnewer 132 File /r /x .svn /x run-gaphor.bat /x README.txt /x lib\python24 ${WIN32_LIBS}\*.* 133 StrCpy $GTKOK 'OK' 134 StrCpy $GTKPATH $INSTDIR\bin 130 135 SectionEnd 131 136 … … 214 219 215 220 216 CreateShortCut "$INSTDIR\gaphor.lnk" "$PYPATH\Scripts\gaphor.exe" "" "$PYPATH\gaphor.ico" 221 SetOutPath $INSTDIR 222 223 File gaphor.bat 224 225 CreateShortCut "gaphor.lnk" "$INSTDIR\gaphor.bat" "" "$PYPATH\gaphor.ico" 217 226 218 227 WriteUninstaller "uninstall.exe"
