2005-01-01 22:03:38 +01:00
|
|
|
; -- Example1.iss --
|
|
|
|
; Demonstrates copying 3 files and creating an icon.
|
|
|
|
|
|
|
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
|
|
|
|
|
|
|
|
[Setup]
|
|
|
|
AppName=Gajim
|
|
|
|
AppVerName=Gajim version 0.3
|
|
|
|
DefaultDirName={pf}\Gajim
|
|
|
|
DefaultGroupName=Gajim
|
|
|
|
UninstallDisplayIcon={app}\Gajim.exe
|
|
|
|
Compression=lzma
|
|
|
|
SolidCompression=yes
|
|
|
|
|
|
|
|
[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
|
|
|
|
|
|
|
|
[Files]
|
|
|
|
Source: "dist\*.pyd"; DestDir: "{app}"
|
|
|
|
Source: "dist\*.dll"; DestDir: "{app}"
|
|
|
|
Source: "dist\*.zip"; DestDir: "{app}"
|
|
|
|
Source: "dist\*.exe"; DestDir: "{app}"; components: main
|
|
|
|
Source: "*.ico"; DestDir: "{app}"
|
|
|
|
Source: "dist\plugins\gtkgui\*.glade"; DestDir: "{app}\plugins\gtkgui"
|
|
|
|
Source: "dist\plugins\gtkgui\icons\sun\*"; DestDir: "{app}\plugins\gtkgui\icons\sun"
|
2005-01-20 22:54:25 +01:00
|
|
|
Source: "dist\plugins\gtkgui\emoticons\*"; DestDir: "{app}\plugins\gtkgui\emoticons"
|
|
|
|
Source: "dist\plugins\gtkgui\pixmaps\*"; DestDir: "{app}\plugins\gtkgui\pixmaps"
|
2005-01-01 22:03:38 +01:00
|
|
|
|
|
|
|
[Icons]
|
|
|
|
Name: "{group}\Gajim"; Filename: "{app}\runCore.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico"
|
2005-01-20 22:54:25 +01:00
|
|
|
Name: "{userdesktop}\Gajim"; Filename: "{app}\gajim.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico"; Components: main; Tasks: desktopicon
|
2005-01-01 22:03:38 +01:00
|
|
|
|
|
|
|
[Run]
|
2005-01-20 22:54:25 +01:00
|
|
|
Filename: "{app}\gajim.exe"; Description: "Launch application"; Flags: postinstall nowait skipifsilent
|