aboutsummaryrefslogtreecommitdiff
path: root/windows/pandoc-setup.iss
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-02-09 21:55:40 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-02-09 21:55:40 -0800
commitbbfba909809f6008450d6812b8ddae06e93b4b7a (patch)
treedfa7926db917f806345a78b3825efa33c47d7b20 /windows/pandoc-setup.iss
parent1cb12d42a5e6a38a92a75549af457c492b8532f3 (diff)
downloadpandoc-bbfba909809f6008450d6812b8ddae06e93b4b7a.tar.gz
Removed Inno setup config files.
Diffstat (limited to 'windows/pandoc-setup.iss')
-rw-r--r--windows/pandoc-setup.iss67
1 files changed, 0 insertions, 67 deletions
diff --git a/windows/pandoc-setup.iss b/windows/pandoc-setup.iss
deleted file mode 100644
index 0236b30b3..000000000
--- a/windows/pandoc-setup.iss
+++ /dev/null
@@ -1,67 +0,0 @@
-; Script generated by the Inno Setup Script Wizard.
-; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
-
-[Setup]
-; NOTE: The value of AppId uniquely identifies this application.
-; Do not use the same AppId value in installers for other applications.
-; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
-AppId={{3CEE7B38-B19D-4980-9CAD-DF53600BD4CA}
-; Version 5.1 is XP
-MinVersion=5.1,5.1
-AppName=Pandoc
-AppVerName=Pandoc 1.10.1
-AppPublisher=John MacFarlane
-AppPublisherURL=http://johnmacfarlane.net/pandoc/
-AppSupportURL=http://johnmacfarlane.net/pandoc/
-AppUpdatesURL=http://johnmacfarlane.net/pandoc/
-DefaultDirName={code:DefDirRoot}\Pandoc
-DefaultGroupName=Pandoc
-AllowNoIcons=yes
-LicenseFile="..\COPYING.txt"
-OutputBaseFilename=pandoc-setup
-Compression=lzma
-SolidCompression=yes
-ChangesEnvironment=yes
-PrivilegesRequired=none
-
-[Tasks]
-Name: modifypath; Description: Add application directory to your path
-
-[Code]
-function ModPathDir(): TArrayOfString;
-var
- Dir: TArrayOfString;
-begin
- setArrayLength(Dir, 1)
- Dir[0] := ExpandConstant('{app}\bin');
- Result := Dir;
-end;
-#include "modpath.iss"
-
-function IsRegularUser(): Boolean;
-begin
- Result := not (IsAdminLoggedOn or IsPowerUserLoggedOn);
-end;
-
-function DefDirRoot(Param: String): String;
-begin
-if IsRegularUser then
- Result := ExpandConstant('{localappdata}')
-else
- Result := ExpandConstant('{pf}')
-end;
-
-[Languages]
-Name: "english"; MessagesFile: "compiler:Default.isl"
-
-[Files]
-Source: "..\cabal-dev\bin\pandoc.exe"; DestDir: "{app}\bin"; Flags: ignoreversion
-Source: "..\README.html"; DestDir: "{app}"; Flags: ignoreversion
-Source: "..\COPYRIGHT.txt"; DestDir: "{app}"; Flags: ignoreversion
-Source: "..\COPYING.txt"; DestDir: "{app}"; Flags: ignoreversion
-; NOTE: Don't use "Flags: ignoreversion" on any shared system files
-
-[Icons]
-Name: "{group}\{cm:UninstallProgram,Pandoc}"; Filename: "{uninstallexe}"
-Name: "{group}\Pandoc User's Guide"; Filename: "{app}\README.html"
-