<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<installer-gui-script minSpecVersion="2">
    <title>EoF MCP Studio</title>
    <options customize="never" require-scripts="false" rootVolumeOnly="true"/>
    <domains enable_anywhere="false" enable_currentUserHome="false" enable_localSystem="true"/>
    <installation-check script="installCheck();"/>
    <script>
function installCheck() {
    if (system.compareVersions(system.version.ProductVersion, "15.6") &lt; 0) {
        my.result.type = "Fatal";
        my.result.title = "macOS 15.6 Required";
        my.result.message = "EoF MCP Studio requires macOS 15.6 or later.";
        return false;
    }
    return true;
}
    </script>
    <welcome file="Welcome.html" mime-type="text/html"/>
    <conclusion file="Conclusion.html" mime-type="text/html"/>
    <choices-outline>
        <line choice="default">
            <line choice="org.eof.tools.MCPStudio.pkg"/>
        </line>
    </choices-outline>
    <choice id="default" title="EoF MCP Studio"/>
    <choice id="org.eof.tools.MCPStudio.pkg" title="EoF MCP Studio" visible="false">
        <pkg-ref id="org.eof.tools.MCPStudio.pkg"/>
    </choice>
    <pkg-ref id="org.eof.tools.MCPStudio.pkg" version="2.11" auth="Root" onConclusion="none" packageIdentifier="org.eof.tools.MCPStudio" installKBytes="36080" updateKBytes="0">#MCPStudio-component.pkg</pkg-ref>
    <pkg-ref id="org.eof.tools.MCPStudio.pkg">
        <bundle-version>
            <bundle CFBundleShortVersionString="2.11" CFBundleVersion="237" id="org.eof.tools.MCPStudio" path="MCPStudio.app"/>
        </bundle-version>
    </pkg-ref>
</installer-gui-script>