The R Project SVN R

Rev

Rev 58320 | Rev 85033 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 58320 Rev 59039
Line 59... Line 59...
59
 
59
 
60
    con <- file("R.wxs", "w")
60
    con <- file("R.wxs", "w")
61
    cat(file = con, sep = "\n",
61
    cat(file = con, sep = "\n",
62
        '<?xml version="1.0" encoding="windows-1252"?>',
62
        '<?xml version="1.0" encoding="windows-1252"?>',
63
        '<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">',
63
        '<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">',
64
        '  <Product Manufacturer="R Development Core Team" ',
64
        '  <Product Manufacturer="R Core Team" ',
65
        '   Id="*"',
65
        '   Id="*"',
66
        '   Language="1033"',
66
        '   Language="1033"',
67
        sprintf('   Name="R%s %s (via msi)"',
67
        sprintf('   Name="R%s %s (via msi)"',
68
                ifelse(have64bit, " x64", ""),
68
                ifelse(have64bit, " x64", ""),
69
                Rver),
69
                Rver),
Line 71... Line 71...
71
        '   UpgradeCode="309E663C-CA7A-40B9-8822-5D466F1E2AF9">',
71
        '   UpgradeCode="309E663C-CA7A-40B9-8822-5D466F1E2AF9">',
72
        '    <Package Id="*" ',
72
        '    <Package Id="*" ',
73
        sprintf('     Keywords="R %s Installer"', Rver),
73
        sprintf('     Keywords="R %s Installer"', Rver),
74
        sprintf('     Description="R %s Installer"', Rver),
74
        sprintf('     Description="R %s Installer"', Rver),
75
        '     Comments="R Language and Environment"',
75
        '     Comments="R Language and Environment"',
76
        '     Manufacturer="R Development Core Team"',
76
        '     Manufacturer="R Core Team"',
77
        if (have64bit) '     InstallerVersion="200"'
77
        if (have64bit) '     InstallerVersion="200"'
78
        else '     InstallerVersion="100"',
78
        else '     InstallerVersion="100"',
79
        if (have64bit) '     Platform="x64"',
79
        if (have64bit) '     Platform="x64"',
80
        '     Languages="1033"',
80
        '     Languages="1033"',
81
        '     Compressed="yes"',
81
        '     Compressed="yes"',