diff options
author | monsta <[email protected]> | 2015-08-25 14:40:58 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2015-09-02 11:34:01 +0200 |
commit | b24934e186456b50d7702192ec3a270926831791 (patch) | |
tree | e7daae0af65482e5f1a5598808e4e55792dd7e6d /win32/pluma.iss.in | |
parent | f6d7a422f3f5f97e676cd18cef5bb46aca8da6be (diff) | |
download | pluma-b24934e186456b50d7702192ec3a270926831791.tar.bz2 pluma-b24934e186456b50d7702192ec3a270926831791.tar.xz |
drop support for win32/osx and checkupdate plugin
that plugin has never been built in linux anyway due to logic
in configure.ac
Diffstat (limited to 'win32/pluma.iss.in')
-rw-r--r-- | win32/pluma.iss.in | 60 |
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; |