<?xml version="1.0" encoding="utf-8"?>
<installer-script minSpecVersion="1">
    <title>Backup Client</title>
    <!--<background uti="com.microsoft.ico" file="BackupOps.ico" scaling="none" alignment="bottomleft"/>-->
    <welcome file="welcome.html" mime-type="text/html"/>
    <conclusion file="conclusion.html" mime-type="text/html"/>
    <license file="LICENSE.txt"/>
    <options customize="never" allow-external-scripts="no" hostArchitectures="x86_64,arm64"/>
    <domains enable_anywhere="true"/>
    <installation-check script="installCheck();"/>
    <script>
function installCheck() {
    if(!(system.compareVersions(system.version.ProductVersion, '10.13.0') &gt;= 0)) {
        my.result.title = 'Unable to install';
        my.result.message = 'BackupOps requires Mac OS X 10.13 or later.';
        my.result.type = 'Fatal';
        return false;
    }
    if(system.files.fileExistsAtPath('/Library/BackupOps/')) {
        my.result.title = 'Previous Installation Detected';
        my.result.message = 'A previous installation of BackupOps exists at /Library/BackupOps/. This installer will overwrite the existing application files. You may wish to back up your data before proceeding.';
        my.result.type = 'Warning';
        return false;
    }
    return true;
}
    </script>
    <choices-outline>
        <line choice="BackupOps"/>
    </choices-outline>
    <choice id="BackupOps" title="BackupOps">
        <pkg-ref id="BackupOps.pkg"/>
    </choice>
    <pkg-ref id="BackupOps.pkg" auth="root" packageIdentifier="com.BackupOps.backupops" version="2026.05.22" installKBytes="53931">#BackupOps.pkg</pkg-ref>
    <pkg-ref id="BackupOps.pkg">
        <bundle-version>
            <bundle CFBundleShortVersionString="1.0.3" CFBundleVersion="8" id="com.backupops.BackupOpsMenuApp" path="Library/BackupOps/BackupOpsMenuApp.xcarchive/Products/Applications/BackupOpsMenuApp.app"/>
        </bundle-version>
    </pkg-ref>
</installer-script>