我正在尝试使用productbuild命令打包应用程序来创建一个包含许可证文件的pkg文件。以下是我的表现:
# Creates the first package
productbuild --sign "3rd Party Mac Developer Installer: Tamaggo" --component tamaggo\ ibi.app /Applications/ tamaggoibi.pkg
# Creates a package that will hold the first one using a distribution file
productbuild --distribution tamaggo\ ibi.app/Contents/distribution.xml --package-path . --sign "3rd Party Mac Developer Installer: Tamaggo" bassel.pkg
我总是收到以下警告:
productbuild:警告:无法加载包./tamaggoibi.pkg
如果我双击第一个创建的包,则安装成功完成。如果我双击另一个,没有任何事情发生。
我无法弄清楚第一个让它无法加载的包有什么问题。
这是distribution.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<installer-gui-script minSpecVersion="1">
<title>tamaggo ibi</title>
<license file="license.html" />
<background file="ApplicationBackground.gif" />
<options customize="never" allow-external-scripts="no"/>
<choices-outline>
<line choice="choice0"/>
</choices-outline>
<choice id="choice0" title="Install tamaggo ibi">
<pkg-ref id="tamaggoibi" />
</choice>
<pkg-ref id="tamaggoibi" version="1.6">#tamaggoibi.pkg</pkg-ref>
</installer-gui-script>