<?xml version="1.0" encoding="utf-8"?>
<installer-script minSpecVersion="1">
    <title>PRIMO</title>
    <license file="LICENSE.txt"/>
    <options customize="never" allow-external-scripts="no"/>
    <domains enable_localSystem="true"/>
    <installation-check script="installCheck();"/>
    <script>
function installCheck() {
    if(!(system.compareVersions(system.version.ProductVersion, '10.9.0') &gt;= 0)) {
        my.result.title = 'Unable to install';
        my.result.message = 'PRIMO requires Mac OS X 10.9 or later.';
        my.result.type = 'Fatal';
        return false;
    }
    return true;
}
    </script>
    <choices-outline>
        <line choice="PRIMO"/>
    </choices-outline>
    <choice id="PRIMO" title="PRIMO">
        <pkg-ref id="PRIMO.pkg"/>
    </choice>
    <pkg-ref id="PRIMO.pkg" auth="Root" packageIdentifier="com.APFX.PRIMO" version="1.5.0" installKBytes="49509" updateKBytes="0">#PRIMO.pkg</pkg-ref>
    <pkg-ref id="PRIMO.pkg">
        <bundle-version>
            <bundle CFBundleShortVersionString="1.5.0" CFBundleVersion="1.5.0" id="com.APFX.PRIMO" path="PRIMO.component"/>
        </bundle-version>
    </pkg-ref>
</installer-script>