|
Revision 3060, 1.3 kB
(checked in by asterix, 3 years ago)
|
|
gajim.ico has moved
|
| 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.8 |
|---|
| 9 | DefaultDirName={pf}\Gajim |
|---|
| 10 | DefaultGroupName=Gajim |
|---|
| 11 | UninstallDisplayIcon={app}\src\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}\src" |
|---|
| 23 | Source: "dist\*.dll"; DestDir: "{app}\src" |
|---|
| 24 | Source: "dist\*.zip"; DestDir: "{app}\src" |
|---|
| 25 | Source: "COPYING"; DestDir: "{app}" |
|---|
| 26 | Source: "dist\gajim.exe"; DestDir: "{app}\src"; components: main |
|---|
| 27 | Source: "dist\*.glade"; DestDir: "{app}\src" |
|---|
| 28 | Source: "data\*"; DestDir: "{app}\data"; Flags: recursesubdirs |
|---|
| 29 | |
|---|
| 30 | [Icons] |
|---|
| 31 | Name: "{group}\Gajim"; Filename: "{app}\src\Gajim.exe"; WorkingDir: "{app}\src" |
|---|
| 32 | Name: "{group}\Uninstall Gajim"; Filename: "{app}\unins000.exe"; WorkingDir: "{app}" |
|---|
| 33 | Name: "{userdesktop}\Gajim"; Filename: "{app}\src\gajim.exe"; WorkingDir: "{app}\src"; IconFilename: "{app}\data\pixmaps\gajim.ico"; Components: main; Tasks: desktopicon |
|---|
| 34 | |
|---|
| 35 | [Run] |
|---|
| 36 | Filename: "{app}\src\gajim.exe"; Description: "Launch application"; Flags: postinstall nowait skipifsilent |
|---|