<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
    <installation-check script="CustomInstallationCheck();"/>
    <script>
        function CustomInstallationCheck() {
            if (!(system.compareVersions(system.version.ProductVersion, '10.7') &gt;= 0)) {
                <!-- Allow installation only on 10.7 or higher -->
        
                my.result.title = system.localizedString('odrive');
                my.result.message = system.localizedString('Unable to install. odrive requires Mac OS X 10.7 or newer.');
                my.result.type = 'Fatal';
                return false;
            }
            return true;
        }
    </script>
    <title>odrive</title>
    <license file="License.rtf" mime-type="text/rtf"/>
    <domains enable_localSystem="true"/>
    <pkg-ref id="com.oxygen.odrive.installer-prod.pkg">
        <bundle-version>
            <bundle CFBundleShortVersionString="0.0.0" id="com.oxygencloud.odrive" path="odrive.app"/>
        </bundle-version>
    </pkg-ref>
    <options customize="never" require-scripts="false"/>
    <choices-outline>
        <line choice="default">
            <line choice="com.oxygen.odrive.installer-prod.pkg"/>
        </line>
    </choices-outline>
    <choice id="default"/>
    <choice id="com.oxygen.odrive.installer-prod.pkg" visible="false">
        <pkg-ref id="com.oxygen.odrive.installer-prod.pkg"/>
    </choice>
    <pkg-ref id="com.oxygen.odrive.installer-prod.pkg" version="1.0.7676" onConclusion="none" installKBytes="49532" updateKBytes="0">#app.pkg</pkg-ref>
</installer-gui-script>