summaryrefslogtreecommitdiff
path: root/win32/pluma.iss.in
diff options
context:
space:
mode:
Diffstat (limited to 'win32/pluma.iss.in')
-rw-r--r--win32/pluma.iss.in60
1 files changed, 0 insertions, 60 deletions
diff --git a/win32/pluma.iss.in b/win32/pluma.iss.in
deleted file mode 100644
index c480376d..00000000
--- a/win32/pluma.iss.in
+++ /dev/null
@@ -1,60 +0,0 @@
-[Setup]
-AppName=pluma
-AppVerName=pluma @VERSION@
-DefaultDirName={pf}\pluma
-DefaultGroupName=pluma
-UninstallDisplayIcon={app}\pluma.exe
-Uninstallable=yes
-AppPublisher=MATE
-AppPublisherURL=http:\\www.mate-desktop.org\
-AppVersion=@VERSION@
-OutputBaseFilename=pluma-setup-@VERSION@-INSTALLERREVISION
-LicenseFile=pluma\share\doc\COPYING
-
-[Components]
-Name: "gtk"; Description: "GTK+ runtime environment"; Types: full compact custom; Flags: fixed
-Name: "main"; Description: "Pluma"; Types: full compact custom; Flags: fixed
-
-; TODO: Enable languages separately
-Name: "python"; Description: "Python runtime and modules"; Types: full compact custom; Flags: fixed
-Name: "locale"; Description: "Translations"; Types: full compact custom; Flags: fixed
-
-[Tasks]
-Name: common; Description: "For all users"; Components: main; Flags: exclusive
-Name: user; Description: "For the current user only"; Components: main; Flags: exclusive unchecked
-Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
-Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
-
-[Icons]
-; Common task icons
-Name: "{commonprograms}\{groupname}\pluma"; Filename: "{app}\bin\pluma.exe"; Tasks: common
-Name: "{commonprograms}\{groupname}\Uninstall pluma"; Filename: "{uninstallexe}"; Tasks: common
-Name: "{commondesktop}\pluma"; Filename: "{app}\bin\pluma.exe"; Tasks: desktopicon
-Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\pluma"; Filename: "{app}\bin\pluma.exe"; Tasks: quicklaunchicon
-
-; User task icons
-Name: "{userprograms}\{groupname}\pluma"; Filename: "{app}\bin\pluma.exe"; Tasks: user
-Name: "{userprograms}\{groupname}\Uninstall pluma"; Filename: "{uninstallexe}"; Tasks: user
-
-[Files]
-
-; All files
-Source: "gtk\*"; DestDir: "{app}\"; Components: gtk; Flags: recursesubdirs
-Source: "pluma\*"; DestDir: "{app}\"; Components: main; Flags: recursesubdirs
-Source: "python\*"; DestDir: "{app}\bin"; Components: python; Flags: recursesubdirs
-Source: "locale\*"; DestDir: "{app}\"; Components: locale; Flags: recursesubdirs
-
-[Run]
-Filename: "{app}\bin\querymodules.bat"; StatusMsg: "Querying modules..."; Flags: runhidden
-
-[Code]
-{ Remove generated files not generated by the installer }
-
-// Skip Components selection, all components are required anyway
-function ShouldSkipPage(CurPageID: Integer): Boolean;
-begin
- if CurPageID = wpSelectComponents then
- Result := True
- else
- Result := False;
-end;