ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment>
|
|
<PackageGroup Id="launcher">
|
|
<!-- The All Users launcher is always the 32-bit version -->
|
|
<MsiPackage Id="launcher_AllUsers"
|
|
SourceFile="!(bindpath.build32)en-us\launcher.msi"
|
|
Compressed="$(var.CompressMSI)"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
ForcePerMachine="yes"
|
|
EnableFeatureSelection="yes"
|
|
Permanent="yes"
|
|
Visible="yes"
|
|
InstallCondition="(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not BlockedLauncher">
|
|
<?if $(var.Platform)~="ARM64" ?>
|
|
<MsiProperty Name="ARM64_SHELLEXT" Value="1" />
|
|
<?endif ?>
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="launcher_JustForMe"
|
|
SourceFile="!(bindpath.build32)en-us\launcher.msi"
|
|
Compressed="$(var.CompressMSI)"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
ForcePerMachine="no"
|
|
EnableFeatureSelection="yes"
|
|
Permanent="yes"
|
|
Visible="yes"
|
|
InstallCondition="not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher and not BlockedLauncher">
|
|
<?if $(var.Platform)~="ARM64" ?>
|
|
<MsiProperty Name="ARM64_SHELLEXT" Value="1" />
|
|
<?endif ?>
|
|
</MsiPackage>
|
|
</PackageGroup>
|
|
</Fragment>
|
|
</Wix> |