2013-11-26 05:34:53 +00:00
|
|
|
; Script generated by the Inno Setup Script Wizard.
|
|
|
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
|
|
|
|
|
|
|
#define AppName "NzbDrone"
|
|
|
|
#define AppPublisher "NzbDrone"
|
|
|
|
#define AppURL "http://www.nzbdrone.com/"
|
2013-11-26 20:17:16 +00:00
|
|
|
#define ForumsURL "http://forums.nzbdrone.com/"
|
2013-11-26 05:34:53 +00:00
|
|
|
#define AppExeName "NzbDrone.exe"
|
2013-11-26 23:59:17 +00:00
|
|
|
#define BuildNumber "2.0"
|
2013-11-27 01:08:28 +00:00
|
|
|
#define BuildNumber GetEnv('BUILD_NUMBER')
|
|
|
|
#define BranchName GetEnv('branch')
|
2013-11-26 05:34:53 +00:00
|
|
|
|
|
|
|
[Setup]
|
|
|
|
; NOTE: The value of AppId uniquely identifies this application.
|
|
|
|
; Do not use the same AppId value in installers for other applications.
|
|
|
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
2013-11-26 20:19:26 +00:00
|
|
|
AppId={{56C1065D-3523-4025-B76D-6F73F67F7F71}
|
2013-11-26 05:34:53 +00:00
|
|
|
AppName={#AppName}
|
2013-11-27 01:08:28 +00:00
|
|
|
AppVersion=2.0
|
2013-11-26 05:34:53 +00:00
|
|
|
AppPublisher={#AppPublisher}
|
|
|
|
AppPublisherURL={#AppURL}
|
2013-11-26 20:17:16 +00:00
|
|
|
AppSupportURL={#ForumsURL}
|
2013-11-26 05:34:53 +00:00
|
|
|
AppUpdatesURL={#AppURL}
|
2013-11-27 02:07:37 +00:00
|
|
|
DefaultDirName={commonappdata}\{#AppName}\bin
|
2013-11-26 05:34:53 +00:00
|
|
|
DisableDirPage=yes
|
|
|
|
DefaultGroupName={#AppName}
|
|
|
|
DisableProgramGroupPage=yes
|
2013-11-27 01:08:28 +00:00
|
|
|
OutputBaseFilename=NzbDrone.{#BranchName}.{#BuildNumber}
|
2013-11-26 05:34:53 +00:00
|
|
|
SolidCompression=yes
|
|
|
|
AppCopyright=Creative Commons 3.0 License
|
|
|
|
AllowUNCPath=False
|
|
|
|
UninstallDisplayIcon={app}\NzbDrone.exe
|
|
|
|
DisableReadyPage=True
|
|
|
|
CompressionThreads=2
|
|
|
|
Compression=lzma2/normal
|
2013-11-26 20:17:16 +00:00
|
|
|
AppContact={#ForumsURL}
|
2014-08-26 06:07:50 +00:00
|
|
|
VersionInfoVersion={#BuildNumber}
|
2013-11-26 05:34:53 +00:00
|
|
|
|
|
|
|
[Languages]
|
|
|
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
|
|
|
|
|
|
[Tasks]
|
2013-11-26 23:59:17 +00:00
|
|
|
;Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
|
|
|
Name: "windowsService"; Description: "Install as a Windows Service"
|
2013-11-26 05:34:53 +00:00
|
|
|
|
|
|
|
[Files]
|
2013-11-26 19:51:19 +00:00
|
|
|
Source: "..\_output\NzbDrone.exe"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
|
Source: "..\_output\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
2013-11-26 05:34:53 +00:00
|
|
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
|
|
|
|
|
|
|
[Icons]
|
2013-11-26 23:59:17 +00:00
|
|
|
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Parameters: "/icon"
|
|
|
|
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Parameters: "/icon"
|
2013-11-26 05:34:53 +00:00
|
|
|
|
|
|
|
[Run]
|
2013-11-26 23:59:17 +00:00
|
|
|
Filename: "{app}\nzbdrone.console.exe"; Parameters: "/u"; Flags: waituntilterminated;
|
|
|
|
Filename: "{app}\nzbdrone.console.exe"; Parameters: "/i"; Flags: waituntilterminated; Tasks: windowsService
|
2013-11-26 05:34:53 +00:00
|
|
|
|
|
|
|
[UninstallRun]
|
|
|
|
Filename: "{app}\nzbdrone.console.exe"; Parameters: "/u"; Flags: waituntilterminated skipifdoesntexist
|