Changeset 2609


Ignore:
Timestamp:
15/02/2010 12:48:28 (2 years ago)
Author:
chris
Message:

Remove the obsolete win32 InstallShield? installer script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/bin/bbackupd/win32/installer.iss

    r217 r2609  
    1 ; Script to generate output file for Box Backup client for the Windows Platform 
    2 ; 
    3 ; Very important - this is the release process 
    4 ; 
    5 ; 1/ Upgrade BOX_VERSION in the file emu.h to the current version for example 0.09eWin32 - then perform a full rebuild 
    6 ; 
    7 ; 2/ Upgrade the AppVerName below to reflect the version 
    8 ; 
    9 ; 3/ Generate the output file, then rename it to the relevent filename to reflect the version 
    10  
    11 [Setup] 
    12 AppName=Box Backup 
    13 AppVerName=BoxWin32 0.09h 
    14 AppPublisher=Fluffy & Omniis 
    15 AppPublisherURL=http://www.omniis.com 
    16 AppSupportURL=http://www.omniis.com 
    17 AppUpdatesURL=http://www.omniis.com 
    18 DefaultDirName={pf}\Box Backup 
    19 DefaultGroupName=Box Backup 
    20 Compression=lzma 
    21 SolidCompression=yes 
    22 PrivilegesRequired=admin 
    23  
    24 [Files] 
    25 Source: "..\..\Release\bbackupd.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    26 Source: "..\..\Release\bbackupctl.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    27 Source: "..\..\Release\bbackupquery.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    28 Source: "..\..\ExceptionCodes.txt"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    29 Source: "icon.ico"; DestDir: "{app}\"; Flags: ignoreversion restartreplace 
    30 Source: "msvcr71.dll"; DestDir: "{app}\"; Flags: restartreplace 
    31 Source: "bbackupd.conf"; DestDir: "{app}"; Flags: confirmoverwrite 
    32 Source: "..\..\..\zlib\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    33 Source: "..\..\..\openssl\bin\libeay32.dll"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    34 Source: "..\..\..\openssl\bin\ssleay32.dll"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    35 Source: "ReadMe.txt"; DestDir: "{app}"; Flags: ignoreversion restartreplace 
    36  
    37 ; NOTE: Don't use "Flags: ignoreversion" on any shared system files 
    38  
    39 [Icons] 
    40 Name: "{group}\Box Backup Query"; Filename: "{app}\bbackupquery.exe"; IconFilename: "{app}\icon.ico" ;Parameters: "-c bbackupd.conf"; WorkingDir: "{app}" 
    41 Name: "{group}\Service\Install Service"; Filename: "{app}\bbackupd.exe"; IconFilename: "{app}\icon.ico" ;Parameters: "-i"; WorkingDir: "{app}" 
    42 Name: "{group}\Service\Remove Service"; Filename: "{app}\bbackupd.exe"; IconFilename: "{app}\icon.ico" ;Parameters: "-r"; WorkingDir: "{app}" 
    43 Name: "{group}\Initiate Backup Now"; Filename: "{app}\bbackupctl.exe"; IconFilename: "{app}\icon.ico" ;Parameters: "-c bbackupd.conf sync"; WorkingDir: "{app}" 
    44  
    45 [Dirs] 
    46 Name: "{app}\bbackupd" 
    47  
    48 [Run] 
    49 Filename: "{app}\bbackupd.exe"; Description: "Install Boxbackup as service"; Parameters: "-i"; Flags: postinstall 
    50 Filename: "{app}\Readme.txt"; Description: "View upgrade notes"; Flags: postinstall shellexec skipifsilent 
    51  
Note: See TracChangeset for help on using the changeset viewer.