productbuild --distribution:无法加载包xxx.pkg

时间:2013-05-15 19:23:20

标签: java macos app-store productbuild pkg-file

我正在尝试使用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>

1 个答案:

答案 0 :(得分:2)

使用pkgbuild修复了我原来的问题,我发现这非常好post帮助我将许可证添加到安装程序。