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.
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment>
|
|
<PackageGroup Id="doc">
|
|
<MsiPackage Id="doc_AllUsers"
|
|
SourceFile="doc.msi"
|
|
Compressed="$(var.CompressMSI)"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
EnableFeatureSelection="yes"
|
|
ForcePerMachine="yes"
|
|
InstallCondition="InstallAllUsers and Include_doc and not LauncherOnly">
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="doc_JustForMe"
|
|
SourceFile="doc.msi"
|
|
Compressed="$(var.CompressMSI)"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
EnableFeatureSelection="yes"
|
|
ForcePerMachine="no"
|
|
InstallCondition="not InstallAllUsers and Include_doc and not LauncherOnly">
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
|
</MsiPackage>
|
|
</PackageGroup>
|
|
</Fragment>
|
|
</Wix> |