b241472a90
* Reverted kludgy change to make-windows-installer.bat. * Removed make-reference-fiels.hs. * Moved the individual ingredients of reference.docx and reference.odt to the data directory. * Removed reference.docx and reference.odt from data directory. * We now build the reference archives from their ingredient pieces in the docx and odt writers, instead of having a reference.docx or reference.odt intermediary. This should fix #2187. It also simplifies the bulid procedure. The one thing users may notice is different is that you can no longer get the reference.docx or reference.odt using `--print-default-data-file`. Instead, simply generate a docx or odt using pandoc with a blank or minimal input, and use that (or a customized version) with `--reference-docx` or `--reference-odt`.
34 lines
1.2 KiB
Batchfile
34 lines
1.2 KiB
Batchfile
@echo off
|
|
cd ..
|
|
cabal update
|
|
cabal sandbox init
|
|
cabal clean
|
|
cabal install hsb2hs
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
cabal install -v1 --force --reinstall --flags="embed_data_files" . pandoc-citeproc
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
strip .\.cabal-sandbox\bin\pandoc.exe
|
|
strip .\.cabal-sandbox\bin\pandoc-citeproc.exe
|
|
.\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.html -S README -o README.html
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
.\.cabal-sandbox\bin\pandoc.exe -s --template data\templates\default.rtf COPYING -t rtf -S -o COPYING.rtf
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
copy COPYRIGHT COPYRIGHT.txt
|
|
for /f "tokens=1-2 delims= " %%a in ('.\.cabal-sandbox\bin\pandoc --version') do (
|
|
@set VERSION=%%b
|
|
goto :next
|
|
)
|
|
:next
|
|
if "%VERSION%" == "" (
|
|
echo Error: could not determine version number.
|
|
exit /b 1
|
|
)
|
|
echo Detected version %VERSION%
|
|
cd windows
|
|
echo Creating msi...
|
|
candle -dVERSION=%VERSION% pandoc.wxs
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
light -sw1076 -ext WixUIExtension -out pandoc-%VERSION%-windows.msi pandoc.wixobj
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
echo Starting kSign: sign, then quit kSign to complete the build...
|
|
kSign
|