You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
11 years ago
|
; 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/"
|
||
|
#define AppExeName "NzbDrone.exe"
|
||
|
|
||
|
[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.)
|
||
|
AppId={{56C1065D-3523-4025-B76D-6F73F67F7F71}
|
||
|
AppName={#AppName}
|
||
|
AppVersion={%BUILD_NUMBER|1.0.0}
|
||
|
AppPublisher={#AppPublisher}
|
||
|
AppPublisherURL={#AppURL}
|
||
|
AppSupportURL={#AppURL}
|
||
|
AppUpdatesURL={#AppURL}
|
||
|
DefaultDirName={commonprograms}\{#AppName}\bin
|
||
|
DisableDirPage=yes
|
||
|
DefaultGroupName={#AppName}
|
||
|
DisableProgramGroupPage=yes
|
||
|
OutputBaseFilename=NzbDroneSetup
|
||
|
SolidCompression=yes
|
||
|
AppCopyright=Creative Commons 3.0 License
|
||
|
AllowUNCPath=False
|
||
|
UninstallDisplayIcon={app}\NzbDrone.exe
|
||
|
DisableReadyPage=True
|
||
|
CompressionThreads=2
|
||
|
Compression=lzma2/normal
|
||
|
|
||
|
[Languages]
|
||
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||
|
|
||
|
[Tasks]
|
||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||
|
|
||
|
[Files]
|
||
|
Source: "C:\Dropbox\Git\NzbDrone\_output\NzbDrone.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||
|
Source: "C:\Dropbox\Git\NzbDrone\_output\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||
|
|
||
|
[Icons]
|
||
|
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExeName}"
|
||
|
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon
|
||
|
|
||
|
[Run]
|
||
|
Filename: "{app}\nzbdrone.console.exe"; Parameters: "/i"; Flags: waituntilterminated
|
||
|
|
||
|
[UninstallRun]
|
||
|
Filename: "{app}\nzbdrone.console.exe"; Parameters: "/u"; Flags: waituntilterminated skipifdoesntexist
|