diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-09 21:49:50 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-09 21:49:50 -0800 |
commit | ddc4287d271cea56dd2b575add64369bf37cae01 (patch) | |
tree | c1c06a9dbb1b407595ba68314841ce0e5aba8d9e | |
parent | c6f9d00be2fdb03dc2dedd0ab454b24477474c61 (diff) | |
download | pandoc-ddc4287d271cea56dd2b575add64369bf37cae01.tar.gz |
Added pandoc.wxs: definition file for WiX msi generator.
-rw-r--r-- | windows/pandoc.wxs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/windows/pandoc.wxs b/windows/pandoc.wxs new file mode 100644 index 000000000..257f536fd --- /dev/null +++ b/windows/pandoc.wxs @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Product Id="37DB5E26-BDA9-4166-AFD7-E23DA4B75755" + UpgradeCode="A68E8EF6-ABB1-4F22-A3C5-68DFDF0AB562" Name="Pandoc 1.10" + Version="1.10.2.1" Manufacturer="John MacFarlane" + Language="1033"> + <Package InstallerVersion="200" Compressed="yes" + Comments="Windows Installer Package" /> + <Media Id="1" Cabinet="product.cab" EmbedCab="yes" /> + <Directory Id="TARGETDIR" Name="SourceDir"> + <Directory Id="ProgramFilesFolder"> + <Directory Id="INSTALLDIR" Name="Pandoc"> + <Component Id="MainExecutable" + Guid="ECD35082-4C28-49E1-977E-B90FC7C400C7" KeyPath="yes"> + <File Id="pandocEXE" Name="pandoc.exe" + Source="..\cabal-dev\bin\pandoc.exe" /> + <File Id="pandocCOPYRIGHT" Name="COPYRIGHT.txt" + Source="..\COPYRIGHT.txt" /> + <File Id="pandocCOPYING" Name="COPYING.txt" + Source="..\COPYING.txt" /> + <Environment Id="UpdatePath" Name="PATH" Action="set" + Part="last" System="yes" Value="[INSTALLDIR]" /> + </Component> + <Component Id="Documentation" + Guid="A8D54A76-1A3D-4647-8327-81B69D39D8A3" KeyPath="yes"> + <File Id="pandocREADME" Name="Pandoc User's Guide.html" + Source="..\README.html" /> + </Component> + </Directory> + </Directory> + </Directory> + <Feature Id="Complete" Level="1"> + <ComponentRef Id="MainExecutable" /> + <ComponentRef Id="Documentation" /> + </Feature> + </Product> +</Wix> |