<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
    <options customize="never" require-scripts="false"/>
    <title>BusyContacts</title>
    <installation-check script="InstallationCheck()"/>
    <script>
function InstallationCheck(prefix) {
	if (system.compareVersions(system.version.ProductVersion, '10.9.0') &lt; 0) {
		my.result.message = system.localizedStringWithFormat('ERROR_0', '10.9.0');
		my.result.type = 'Fatal';
		return false;
	}
	return true;
}
</script>
    <welcome file="Welcome.rtf"/>
    <background file="background.tiff" alignment="bottomleft" scaling="proportional"/>
    <pkg-ref id="com.busymac.busycontacts.pkg">
        <bundle-version/>
    </pkg-ref>
    <choices-outline>
        <line choice="default">
            <line choice="com.busymac.busycontacts.pkg"/>
        </line>
    </choices-outline>
    <choice id="default"/>
    <choice id="com.busymac.busycontacts.pkg" visible="false">
        <pkg-ref id="com.busymac.busycontacts.pkg"/>
    </choice>
    <pkg-ref id="com.busymac.busycontacts.pkg" version="1.000" onConclusion="none" installKBytes="12970">#BusyContacts.pkg</pkg-ref>
</installer-gui-script>