我有一个mac应用程序(例如Sample.pkg包含Sample.app)以及几个pkg依赖项(例如A.pkg和B.pkg)。每当用户运行与这三个软件包捆绑在一起的dmg / product存档时,必须首先运行A.pkg和B.pkg,然后再安装Sample.pkg。有没有办法可以在打包mac应用程序时指定这种依赖关系,而不需要用户手动检查并按正确的顺序安装它们?
答案 0 :(得分:0)
有一种方法。
您可以将此类条目添加到distribution.xml
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>Application name</title>
<organization>com.organization</organization>
....
<volume-check>
<required-bundles description="Some message which UI Installer doesn't show :(">
<!-- bundle 1 -->
<bundle id="com.organization.app1" path="Applications/App1.app" />
<!-- bundle 2 -->
<bundle id="com.organization.app2" path="Applications/App2.app" />
</required-bundles>
</volume-check>
....
</installer-gui-script>
此内容记录在(required-bundles)。
一些示例可以是found on github。
Apple Installer中存在一些错误,required-bundles description
说:
属性
|----------------|------------------|------------------------------------------------------------| | Attribute name | Type | Description | |----------------|------------------|------------------------------------------------------------| | | | _Optional._ Values: `true` (default) to require all of | | `all` | Boolean | the specified bundles, or `false` to require at least one | | | | of them. | |----------------|------------------|------------------------------------------------------------| | `description` | String, | _Optional._ A description of the required bundles, | | | localization key | displayed to the user if the requirement is not met. | |----------------|------------------|------------------------------------------------------------|
因此应该显示来自description
的消息,但我在任何地方都看不到它,因此用户可能会困惑为什么他无法安装应用程序。
它只是警告:You can't install <your application> here, <your application> do not allow it.
(对不起,翻译从我的本地化回到英语)。
我已经看到一些安装包,该安装包正在运行installation-check的自定义脚本,使用system.run('script_name')
从安装JavaScript中调用它。