aboutsummaryrefslogtreecommitdiff
path: root/tools/build/star-product.wxs
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2012-08-28 00:36:53 -0500
committerpmichaud <pmichaud@pobox.com>2012-08-28 00:36:53 -0500
commitc012d8b882480151d8eb7da92c4cca80d1d9b814 (patch)
tree827354a3d38adfafe328ef55fa454147cc4af868 /tools/build/star-product.wxs
parentc3ff6182252a634e2ce8167a8bd367932e858dd5 (diff)
Move skel/ into top-level directory, to try building directly from the repo.
Diffstat (limited to 'tools/build/star-product.wxs')
-rw-r--r--tools/build/star-product.wxs68
1 files changed, 68 insertions, 0 deletions
diff --git a/tools/build/star-product.wxs b/tools/build/star-product.wxs
new file mode 100644
index 0000000..c950e97
--- /dev/null
+++ b/tools/build/star-product.wxs
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <Product Id="*" Language="1033" Manufacturer="Rakudo Perl 6" Name="Rakudo Star $(var.STARVERSION)" UpgradeCode="{08B7EB05-7EAC-4B60-9F5B-AF6E367FE0FD}" Version="1.0.0">
+ <Package Compressed="yes" InstallerVersion="200" />
+
+ <!-- force installation to C: drive -->
+ <Property Id="ROOTDRIVE"><![CDATA[C:\]]></Property>
+
+ <Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="INSTALLROOT" Name="rakudo" />
+
+ <!-- start menu shortcuts, adapted from http://wix.sourceforge.net/manual-wix3/create_start_menu_shortcut.htm -->
+ <Directory Id="ProgramMenuFolder">
+ <Directory Id="RakudoMenuFolder" Name="Rakudo Perl 6">
+ <Component Id="RakudoStartItems" Guid="B5BD7AEC-C8dC-4F84-AF2E-4A417350D642">
+ <Shortcut Id="RakudoShortcut"
+ Name="Rakudo Perl 6"
+ Target="[INSTALLROOT]bin\perl6.exe"
+ WorkingDirectory="INSTALLROOT" />
+ <RemoveFolder Id="RakudoMenuFolder" On="uninstall" />
+ <RegistryValue Root="HKCU" Key="Software\Microsoft\RakudoPerl6" Name="installed" Type="integer" Value="1" KeyPath="yes" />
+ </Component>
+ </Directory>
+ </Directory>
+ </Directory>
+
+ <Feature Id="ProductFeature" Level="1" Title="Rakudo Star $(var.STARVERSION)">
+ <ComponentGroupRef Id="RakudoStar" />
+ <ComponentRef Id="RakudoStartItems" />
+ </Feature>
+ <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />
+
+ <!-- This is just like WixUI_Minimal but we skip the EULA part -->
+ <UI Id="WixUI_Minimal">
+ <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
+ <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
+ <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
+
+ <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
+ <Property Id="WixUI_Mode" Value="Minimal" />
+
+ <DialogRef Id="ErrorDlg" />
+ <DialogRef Id="FatalError" />
+ <DialogRef Id="FilesInUse" />
+ <DialogRef Id="MsiRMFilesInUse" />
+ <DialogRef Id="PrepareDlg" />
+ <DialogRef Id="ProgressDlg" />
+ <DialogRef Id="ResumeDlg" />
+ <DialogRef Id="UserExit" />
+ <DialogRef Id="WelcomeDlg" />
+
+ <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="PrepareDlg">1</Publish>
+ <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
+
+ <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
+
+ <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
+
+ <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
+ <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
+ <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
+
+ <Property Id="ARPNOMODIFY" Value="1" />
+ </UI>
+
+ <UIRef Id="WixUI_Common" />
+ </Product>
+</Wix>