|
Revision 446, 1.5 kB
(checked in by asterix, 4 years ago)
|
|
prepare windows installer for 0.5 release
|
| Line | |
|---|
| 1 | ; -- Example1.iss --
|
|---|
| 2 | ; Demonstrates copying 3 files and creating an icon.
|
|---|
| 3 |
|
|---|
| 4 | ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
|
|---|
| 5 |
|
|---|
| 6 | [Setup]
|
|---|
| 7 | AppName=Gajim
|
|---|
| 8 | AppVerName=Gajim version 0.5
|
|---|
| 9 | DefaultDirName={pf}\Gajim
|
|---|
| 10 | DefaultGroupName=Gajim
|
|---|
| 11 | UninstallDisplayIcon={app}\Gajim.exe
|
|---|
| 12 | Compression=lzma
|
|---|
| 13 | SolidCompression=yes
|
|---|
| 14 |
|
|---|
| 15 | [Components]
|
|---|
| 16 | Name: "main"; Description: "Main Files"; Types: full compact custom; Flags: fixed
|
|---|
| 17 |
|
|---|
| 18 | [Tasks]
|
|---|
| 19 | Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Components: main
|
|---|
| 20 |
|
|---|
| 21 | [Files]
|
|---|
| 22 | Source: "dist\*.pyd"; DestDir: "{app}"
|
|---|
| 23 | Source: "dist\*.dll"; DestDir: "{app}"
|
|---|
| 24 | Source: "dist\*.zip"; DestDir: "{app}"
|
|---|
| 25 | Source: "dist\*.exe"; DestDir: "{app}"; components: main
|
|---|
| 26 | Source: "*.ico"; DestDir: "{app}"
|
|---|
| 27 | Source: "dist\plugins\gtkgui\*.glade"; DestDir: "{app}\plugins\gtkgui"
|
|---|
| 28 | Source: "dist\plugins\gtkgui\icons\sun\*"; DestDir: "{app}\plugins\gtkgui\icons\sun"
|
|---|
| 29 | Source: "dist\plugins\gtkgui\emoticons\*"; DestDir: "{app}\plugins\gtkgui\emoticons"
|
|---|
| 30 | Source: "dist\plugins\gtkgui\pixmaps\*"; DestDir: "{app}\plugins\gtkgui\pixmaps"
|
|---|
| 31 | Source: "dist\sounds\*"; DestDir: "{app}\sounds"
|
|---|
| 32 |
|
|---|
| 33 | [Icons]
|
|---|
| 34 | Name: "{group}\Gajim"; Filename: "{app}\Gajim.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico"
|
|---|
| 35 | Name: "{userdesktop}\Gajim"; Filename: "{app}\gajim.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico"; Components: main; Tasks: desktopicon
|
|---|
| 36 |
|
|---|
| 37 | [Run]
|
|---|
| 38 | Filename: "{app}\gajim.exe"; Description: "Launch application"; Flags: postinstall nowait skipifsilent
|
|---|