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/
7
AppName=Bazaar-NG (Bzr)
12
; VERSION = bzrlib.__version__
13
; AppVerName = 'Bazaar-NG (Bzr) %s' % VERSION
14
; OutputBaseFilename = 'bzr-setup-%s' % VERSION
17
; AppVerName = 'Bazaar-NG (Bzr)'
18
; OutputBaseFilename = 'bzr-setup'
20
; cog.outl('AppVerName=%s' % AppVerName)
21
; cog.outl('OutputBaseFilename=%s' % OutputBaseFilename)
23
AppVerName=Bazaar-NG (Bzr)
24
OutputBaseFilename=bzr-setup
27
DefaultDirName={pf}\Bazaar-NG
28
DefaultGroupName=Bazaar-NG
33
SourceDir="..\..\win32_bzr.exe"
35
SetupIconFile="..\bzr.ico"
37
VersionInfoCompany="Canonical Ltd."
38
VersionInfoCopyright="Canonical Ltd., 2005-2006"
39
VersionInfoDescription="Installer for stand-alone bzr.exe"
43
; for i in bzrlib.version_info[:3]:
48
; version_number.append(i)
49
; # incremental build number
50
; from tools.win32.file_version import *
52
; version_prev = get_file_version(OutputBaseFilename + '.exe')
53
; except (FileNotFound, VersionNotAvailable):
56
; if version_number == list(version_prev[:3]):
57
; version_number.append((version_prev[-1]+1) % 65536)
58
; version_str = '.'.join(str(i) for i in version_number)
59
; cog.outl('VersionInfoVersion="%s"' % version_str)
63
AppComments="Bzr: Friendly distributed version control system"
64
AppPublisher="Canonical Ltd."
65
AppPublisherURL="http://www.bazaar-vcs.org"
66
AppSupportURL="http://www.bazaar-vcs.org/BzrSupport"
67
AppUpdatesURL="http://www.bazaar-vcs.org/WindowsDownloads"
68
; [[[cog cog.outl('AppVersion=%s' % VERSION) ]]]
71
ChangesEnvironment=yes
74
Source: "*.*"; DestDir: "{app}"; Flags: ignoreversion;
75
Source: "lib\*.*"; DestDir: "{app}\lib"; Flags: createallsubdirs ignoreversion recursesubdirs;
76
Source: "doc\*.*"; DestDir: "{app}\doc"; Flags: createallsubdirs ignoreversion recursesubdirs;
79
Name: "{userappdata}\bazaar\2.0"
82
Name: "{group}\Documentation index"; Filename: "{app}\doc\index.htm"; WorkingDir: "{app}\doc";
83
Name: "{group}\Bazaar-NG Home Page"; Filename: "{app}\bazaar.url"; Comment: "http://www.bazaar-vcs.org";
84
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";
85
Name: "{group}\Uninstall Bzr"; Filename: "{uninstallexe}"; IconFileName: "{sys}\shell32.dll"; IconIndex: 101; Comment: "Remove Bzr completely";
88
Name: Path; Description: "Add {app} directory to PATH environment variable";
89
Name: Shell; Description: "Add Bzr context menu to shell";
92
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--start-bzr"; Flags: skipifdoesntexist runhidden;
93
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--check-mfc71"; Flags: skipifdoesntexist skipifsilent runhidden;
94
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--add-path"; Tasks: Path; Flags: skipifdoesntexist skipifsilent runhidden;
95
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--add-shell-menu"; Tasks: Shell; Flags: skipifdoesntexist skipifsilent runhidden;
98
Filename: "{app}\bzr_postinstall.exe"; Parameters: "--delete-path --delete-shell-menu --silent"; Flags: skipifdoesntexist runhidden;