1
; Script for Inno Setup installer
 
 
2
; [[[cog cog.outl('; This script created by Cog from bzr.iss.cog source') ]]]
 
 
4
; Cog is http://www.nedbatchelder.com/code/cog/
 
 
12
;     VERSION = bzrlib.__version__
 
 
13
;     AppVerName = 'Bazaar %s' % VERSION
 
 
14
;     OutputBaseFilename = 'bzr-setup-%s' % VERSION
 
 
17
;     AppVerName = 'Bazaar'
 
 
18
;     OutputBaseFilename = 'bzr-setup'
 
 
20
; cog.outl('AppVerName=%s' % AppVerName)
 
 
21
; cog.outl('OutputBaseFilename=%s' % OutputBaseFilename)
 
 
24
OutputBaseFilename=bzr-setup
 
 
27
DefaultDirName={pf}\Bazaar
 
 
28
DefaultGroupName=Bazaar
 
 
33
SourceDir="..\..\win32_bzr.exe"
 
 
35
SetupIconFile="..\bzr.ico"
 
 
36
LicenseFile="..\COPYING.txt"
 
 
38
VersionInfoCompany="Canonical Ltd."
 
 
39
VersionInfoCopyright="Canonical Ltd., 2005-2006"
 
 
40
VersionInfoDescription="Installer for stand-alone bzr.exe"
 
 
44
; for i in bzrlib.version_info[:3]:
 
 
49
;     version_number.append(i)
 
 
50
; # incremental build number
 
 
51
; from tools.win32.file_version import *
 
 
53
;     version_prev = get_file_version(OutputBaseFilename + '.exe')
 
 
54
; except (FileNotFound, VersionNotAvailable):
 
 
57
;     if version_number == list(version_prev[:3]):
 
 
58
;         version_number.append((version_prev[-1]+1) % 65536)
 
 
59
; version_str = '.'.join(str(i) for i in version_number)
 
 
60
; cog.outl('VersionInfoVersion="%s"' % version_str)
 
 
64
AppComments="Bazaar: Friendly distributed version control system"
 
 
65
AppPublisher="Canonical Ltd."
 
 
66
AppPublisherURL="http://www.bazaar-vcs.org"
 
 
67
AppSupportURL="http://www.bazaar-vcs.org/BzrSupport"
 
 
68
AppUpdatesURL="http://www.bazaar-vcs.org/WindowsDownloads"
 
 
69
; [[[cog cog.outl('AppVersion=%s' % VERSION) ]]]
 
 
72
ChangesEnvironment=yes
 
 
75
Source: "*.*"; DestDir: "{app}"; Flags: ignoreversion;
 
 
76
Source: "lib\*.*"; DestDir: "{app}\lib"; Flags: createallsubdirs ignoreversion recursesubdirs;
 
 
77
Source: "doc\*.*"; DestDir: "{app}\doc"; Flags: createallsubdirs ignoreversion recursesubdirs;
 
 
80
Name: "{userappdata}\bazaar\2.0"
 
 
83
Name: "{group}\Documentation index"; Filename: "{app}\doc\index.htm"; WorkingDir: "{app}\doc";
 
 
84
Name: "{group}\Bazaar Home Page"; Filename: "{app}\bazaar.url"; Comment: "http://www.bazaar-vcs.org";
 
 
85
Name: "{group}\Start Bzr in cmd shell"; Filename: "{sys}\cmd.exe"; Parameters: "/K start_bzr.bat"; WorkingDir: "{app}"; IconFilename: "{app}\bzr.exe"; Comment: "Open new Bzr session";
 
 
86
Name: "{group}\Uninstall Bzr"; Filename: "{uninstallexe}"; IconFileName: "{sys}\shell32.dll"; IconIndex: 101; Comment: "Remove Bzr completely";
 
 
89
Name: Path; Description: "Add {app} directory to PATH environment variable";
 
 
90
Name: Shell; Description: "Add Bzr context menu to shell";
 
 
93
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--start-bzr"; Flags: skipifdoesntexist runhidden;
 
 
94
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--check-mfc71"; Flags: skipifdoesntexist skipifsilent runhidden;
 
 
95
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--add-path"; Tasks: Path; Flags: skipifdoesntexist skipifsilent runhidden;
 
 
96
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--add-shell-menu"; Tasks: Shell; Flags: skipifdoesntexist skipifsilent runhidden;
 
 
99
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--delete-path --delete-shell-menu --silent"; Flags: skipifdoesntexist runhidden;