X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=telegps%2Ftelegps-windows.nsi.in;h=e852f88aaa01d004850a13a74a3cb9b7ba64ec05;hp=656f8af3e4757d2e43c83ef5f516a74cb387a384;hb=fe14315d4cfccf8b53d9c4b7fa79302fd36b2c9a;hpb=47ff6f7528e3984012e874f91ea4f5c1d68cb465 diff --git a/telegps/telegps-windows.nsi.in b/telegps/telegps-windows.nsi.in index 656f8af3..e852f88a 100644 --- a/telegps/telegps-windows.nsi.in +++ b/telegps/telegps-windows.nsi.in @@ -5,7 +5,7 @@ !define JRE_URL "http://javadl.sun.com/webapps/download/AutoDL?BundleId=52247&/jre-6u27-windows-i586-p.exe" !define PRODUCT_NAME "Altus Metrum Windows Software" -Name "Altus Metrum MicroPeak Installer" +Name "Altus Metrum TeleGPS Installer" ; Default install directory InstallDir "$PROGRAMFILES\AltusMetrum" @@ -21,7 +21,7 @@ RequestExecutionLevel admin ShowInstDetails Show -ComponentText "Altus Metrum MicroPeak Software Installer" +ComponentText "Altus Metrum TeleGPS Software Installer" Function GetJRE MessageBox MB_OK "${PRODUCT_NAME} uses Java ${JRE_VERSION} 32-bit, it will now \ @@ -62,14 +62,41 @@ UninstPage instfiles ; And the stuff to install -Section "MicroPeak Application" +Section "Install Driver" InstDriver + + InstDrv::InitDriverSetup /NOUNLOAD {4D36E96D-E325-11CE-BFC1-08002BE10318} AltusMetrumSerial + Pop $0 + DetailPrint "InitDriverSetup: $0" + InstDrv::DeleteOemInfFiles /NOUNLOAD + InstDrv::CreateDevice /NOUNLOAD + + SetOutPath $TEMP + File "../telemetrum.inf" + InstDrv::InstallDriver /NOUNLOAD "$TEMP\telemetrum.inf" + + SetOutPath $INSTDIR + File "../telemetrum.inf" + + SetOutPath $WINDIR\Inf + File "../telemetrum.inf" + +SectionEnd + +Section "TeleGPS Application" Call DetectJRE SetOutPath $INSTDIR - File "micropeak-fat.jar" + File "telegps-fat.jar" File "altoslib_@ALTOSLIB_VERSION@.jar" File "altosuilib_@ALTOSUILIB_VERSION@.jar" + File "cmudict04.jar" + File "cmulex.jar" + File "cmu_time_awb.jar" + File "cmutimelex.jar" + File "cmu_us_kal.jar" + File "en_us.jar" + File "freetts.jar" File "jfreechart.jar" File "jcommon.jar" @@ -77,27 +104,27 @@ Section "MicroPeak Application" File "../icon/*.ico" - CreateShortCut "$SMPROGRAMS\MicroPeak.lnk" "$SYSDIR\javaw.exe" "-jar micropeak-fat.jar" "$INSTDIR\micro-peak.ico" + CreateShortCut "$SMPROGRAMS\TeleGPS.lnk" "$SYSDIR\javaw.exe" "-jar telegps-fat.jar" "$INSTDIR\telegps.ico" SectionEnd -Section "FTDI USB Driver" - SetOutPath $INSTDIR +Section "TeleGPS Desktop Shortcut" + CreateShortCut "$DESKTOP\TeleGPS.lnk" "$INSTDIR\telegps-fat.jar" "" "$INSTDIR\telegps.ico" +SectionEnd - File "CDM20824_Setup.exe" +Section "TeleGPS Firmware" - StrCpy $2 "$INSTDIR\CDM20824_Setup.exe" - ExecWait $2 -SectionEnd + SetOutPath $INSTDIR -Section "MicroPeak Desktop Shortcut" - CreateShortCut "$DESKTOP\MicroPeak.lnk" "$INSTDIR\micropeak-fat.jar" "" "$INSTDIR\micro-peak.ico" + File "../src/telegps-v1.0/telegps-v1.0-${VERSION}.ihx" SectionEnd Section "Documentation" SetOutPath $INSTDIR - File "../doc/micropeak.pdf" + File "../doc/telegps.pdf" + File "../doc/altos.pdf" + File "../doc/telemetry.pdf" SectionEnd Section "Uninstaller" @@ -126,7 +153,7 @@ Section "Uninstall" RMDir "$INSTDIR" ; Remove shortcuts, if any - Delete "$SMPROGRAMS\MicroPeak.lnk" - Delete "$DESKTOP\MicroPeak.lnk" + Delete "$SMPROGRAMS\TeleGPS.lnk" + Delete "$DESKTOP\TeleGPS.lnk" SectionEnd