2

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

1 回答 1

3

使用 pkgbuild 解决了我最初的问题,我发现这篇非常好的帖子帮助我将许可证添加到安装程序。

于 2013-05-16T12:44:32.437 回答