2005-04-01 01:26:05 +02:00
|
|
|
[Setup]
|
|
|
|
AppName=Gajim
|
2006-12-19 13:20:39 +01:00
|
|
|
AppVerName=Gajim version 0.11-1
|
2005-04-01 01:26:05 +02:00
|
|
|
DefaultDirName={pf}\Gajim
|
|
|
|
DefaultGroupName=Gajim
|
2005-05-28 10:18:04 +02:00
|
|
|
UninstallDisplayIcon={app}\src\Gajim.exe
|
2005-04-01 01:26:05 +02:00
|
|
|
Compression=lzma
|
|
|
|
SolidCompression=yes
|
2005-11-18 10:11:10 +01:00
|
|
|
SetupIconFile=data\pixmaps\gajim.ico
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
[Components]
|
|
|
|
Name: "main"; Description: "Main Files"; Types: full compact custom; Flags: fixed
|
|
|
|
|
|
|
|
[Tasks]
|
|
|
|
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Components: main
|
2005-11-18 12:53:12 +01:00
|
|
|
Name: removeprevious; Description: "Remove previously installed version"; GroupDescription: "Previous install:"; Components: main; Check: IsAlreadyInstalled('Gajim');
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
[Files]
|
2005-05-28 10:18:04 +02:00
|
|
|
Source: "dist\*.pyd"; DestDir: "{app}\src"
|
|
|
|
Source: "dist\*.dll"; DestDir: "{app}\src"
|
|
|
|
Source: "dist\*.zip"; DestDir: "{app}\src"
|
2005-06-05 18:57:18 +02:00
|
|
|
Source: "COPYING"; DestDir: "{app}"
|
2006-02-25 11:05:28 +01:00
|
|
|
Source: "THANKS"; DestDir: "{app}"
|
2006-12-19 13:20:39 +01:00
|
|
|
Source: "AUTHORS"; DestDir: "{app}"
|
2005-05-28 10:18:04 +02:00
|
|
|
Source: "dist\gajim.exe"; DestDir: "{app}\src"; components: main
|
2006-02-21 23:43:57 +01:00
|
|
|
Source: "dist\history_manager.exe"; DestDir: "{app}\src"; components: main
|
2005-08-04 15:10:02 +02:00
|
|
|
Source: "data\*"; DestDir: "{app}\data"; Flags: recursesubdirs
|
2005-09-06 18:03:38 +02:00
|
|
|
Source: "po\*.mo"; DestDir: "{app}\po"; Flags: recursesubdirs
|
2006-12-19 13:20:39 +01:00
|
|
|
;Source: "gtk\*"; DestDir: "{app}\src\gtk"; Flags: recursesubdirs
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
[Icons]
|
2005-08-04 15:10:02 +02:00
|
|
|
Name: "{group}\Gajim"; Filename: "{app}\src\Gajim.exe"; WorkingDir: "{app}\src"
|
2006-02-22 21:23:13 +01:00
|
|
|
Name: "{group}\History Manager"; Filename: "{app}\src\history_manager.exe"; WorkingDir: "{app}\src"
|
2005-08-04 15:10:02 +02:00
|
|
|
Name: "{group}\Uninstall Gajim"; Filename: "{app}\unins000.exe"; WorkingDir: "{app}"
|
2005-08-16 20:02:59 +02:00
|
|
|
Name: "{userdesktop}\Gajim"; Filename: "{app}\src\gajim.exe"; WorkingDir: "{app}\src"; IconFilename: "{app}\data\pixmaps\gajim.ico"; Components: main; Tasks: desktopicon
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
[Run]
|
2005-05-28 10:18:04 +02:00
|
|
|
Filename: "{app}\src\gajim.exe"; Description: "Launch application"; Flags: postinstall nowait skipifsilent
|
2005-11-18 11:43:16 +01:00
|
|
|
|
|
|
|
[Code]
|
|
|
|
|
|
|
|
function GetUninstallPath( AppID: String ): String;
|
|
|
|
var
|
|
|
|
sPrevPath: String;
|
|
|
|
begin
|
|
|
|
sPrevPath := '';
|
|
|
|
if not RegQueryStringValue( HKLM,
|
|
|
|
'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+AppID+'_is1',
|
|
|
|
'UninstallString', sPrevpath) then
|
|
|
|
RegQueryStringValue( HKCU, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\'+AppID+'_is1' ,
|
|
|
|
'UninstallString', sPrevpath);
|
|
|
|
|
|
|
|
Result := sPrevPath;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function IsAlreadyInstalled( AppID: String ): Boolean;
|
|
|
|
var
|
|
|
|
sPrevPath: String;
|
|
|
|
begin
|
|
|
|
sPrevPath := GetUninstallPath( AppID );
|
|
|
|
|
|
|
|
|
|
|
|
if ( Length(sPrevPath) > 0 ) then
|
|
|
|
Result:=true
|
|
|
|
else
|
|
|
|
Result:=false;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure CurStepChanged(CurStep: TSetupStep);
|
|
|
|
var
|
|
|
|
sUninstPath: String;
|
|
|
|
sPrevID: String;
|
|
|
|
ResultCode: Integer;
|
|
|
|
begin
|
|
|
|
if CurStep = ssInstall then
|
|
|
|
begin
|
|
|
|
sPrevID := 'Gajim';
|
|
|
|
sUninstPath := GetUninstallPath( sprevID );
|
|
|
|
|
|
|
|
if ( Length(sUninstPath) > 0 ) then
|
|
|
|
begin
|
|
|
|
sUninstPath := RemoveQuotes(sUninstPath);
|
|
|
|
Exec( RemoveQuotes(sUninstPath), '/silent', '', SW_SHOW, ewWaitUntilTerminated, ResultCode);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|