diff options
Diffstat (limited to 'windows')
-rw-r--r-- | windows/make-windows-installer.bat | 5 | ||||
-rw-r--r-- | windows/pandoc-setup.iss | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat index f8e57485b..3afde2608 100644 --- a/windows/make-windows-installer.bat +++ b/windows/make-windows-installer.bat @@ -1,8 +1,11 @@ @echo off
cd ..
+ghc --make MakeManPage
+MakeManPage.exe
+cabal update
cabal-dev install --disable-library-for-ghci highlighting-kate
cabal-dev install --flags="embed_data_files" citeproc-hs
-cabal-dev install --flags="executable -library" --datasubdir=
+cabal-dev install --flags="executable -library blaze_html_0_5" --datasubdir=
rem note: we use -f-library in building pandoc, because
rem if the library is built, the data file paths will not be relocatable!
strip cabal-dev\bin\pandoc.exe
diff --git a/windows/pandoc-setup.iss b/windows/pandoc-setup.iss index 41f9bbe2f..6ec6487e3 100644 --- a/windows/pandoc-setup.iss +++ b/windows/pandoc-setup.iss @@ -6,8 +6,10 @@ ; 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.9.1.1
+AppVerName=Pandoc 1.9.4.2
AppPublisher=John MacFarlane
AppPublisherURL=http://johnmacfarlane.net/pandoc/
AppSupportURL=http://johnmacfarlane.net/pandoc/
@@ -64,10 +66,11 @@ Source: "..\default.csl"; DestDir: "{app}"; Flags: ignoreversion Source: "..\templates\*"; DestDir: "{app}\templates"; Flags: ignoreversion
Source: "..\data\*"; DestDir: "{app}\data"; Flags: ignoreversion
Source: "..\s5\default\*"; DestDir: "{app}\s5\default"; Flags: ignoreversion
-Source: "..\slidy\graphics\*"; DestDir: "{app}\slidy"; Flags: ignoreversion
-Source: "..\slidy\scripts\*"; DestDir: "{app}\slidy"; Flags: ignoreversion
-Source: "..\slidy\styles\*"; DestDir: "{app}\slidy"; Flags: ignoreversion
-Source: "..\dzslides\*"; DestDir: "{app}\slidy"; Flags: ignoreversion
+Source: "..\slideous\*"; DestDir: "{app}\slideous"; Flags: ignoreversion
+Source: "..\slidy\graphics\*"; DestDir: "{app}\slidy\graphics"; Flags: ignoreversion
+Source: "..\slidy\scripts\*"; DestDir: "{app}\slidy\scripts"; Flags: ignoreversion
+Source: "..\slidy\styles\*"; DestDir: "{app}\slidy\styles"; Flags: ignoreversion
+Source: "..\dzslides\*"; DestDir: "{app}\dzslides"; Flags: ignoreversion
Source: "pcre-license.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "pcre3.dll"; DestDir: "{sys}"; Flags: onlyifdoesntexist sharedfile
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|