From 5ded9cba8563f336939400303d6a841d5089b107 Mon Sep 17 00:00:00 2001 From: Perberos Date: Mon, 7 Nov 2011 19:52:18 -0300 Subject: renaming from gedit to pluma --- win32/pluma.iss.in | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 win32/pluma.iss.in (limited to 'win32/pluma.iss.in') diff --git a/win32/pluma.iss.in b/win32/pluma.iss.in new file mode 100755 index 00000000..ed3599c8 --- /dev/null +++ b/win32/pluma.iss.in @@ -0,0 +1,60 @@ +[Setup] +AppName=pluma +AppVerName=pluma @VERSION@ +DefaultDirName={pf}\pluma +DefaultGroupName=pluma +UninstallDisplayIcon={app}\pluma.exe +Uninstallable=yes +AppPublisher=MATE +AppPublisherURL=http:\\www.pluma.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; -- cgit v1.2.1