|
Revision 376, 1.5 kB
(checked in by asterix, 4 years ago)
|
|
update gajim.iss with new files
|
| 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.3 |
|---|
| 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 | |
|---|
| 32 | [Icons] |
|---|
| 33 | Name: "{group}\Gajim"; Filename: "{app}\runCore.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico" |
|---|
| 34 | Name: "{userdesktop}\Gajim"; Filename: "{app}\gajim.exe"; WorkingDir: "{app}"; IconFilename: "{app}\gajim.ico"; Components: main; Tasks: desktopicon |
|---|
| 35 | |
|---|
| 36 | [Run] |
|---|
| 37 | Filename: "{app}\gajim.exe"; Description: "Launch application"; Flags: postinstall nowait skipifsilent |
|---|