我正在使用productbuild
为MacOS Mojave创建.pkg安装程序。我已经读过schema reference for the Distribution.xml file。我已成功地使用它来包含自定义欢迎。因此,我知道我在运行时正确使用了资源路径:
productbuild --resources ./res --sign "$PKG_SIGN_ID" --distribution Distribution.xml foo.pkg
但是我似乎无法创建自定义背景图片。我尝试了各种jpg和png图像。
我已阅读this question and answer,并尝试在资源目录中使用和不使用en.lproj
子目录。
我的Distribution.xml
最终看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
<background file="background.jpg" mime-type="image/jpeg" scaling="tofit"/>
<welcome file="welcome.html"/>
<title>My App</title>
<pkg-ref id="com.foo.myapp"/>
<options customize="never" require-scripts="false"/>
<choices-outline>
<line choice="default">
<line choice="com.foo.myapp"/>
</line>
</choices-outline>
<choice id="default"/>
<choice id="com.foo.myapp" visible="false">
<pkg-ref id="com.foo.myapp"/>
</choice>
<pkg-ref id="com.foo.myapp" version="1.0" onConclusion="none">foo.pkg</pkg-ref>
</installer-gui-script>
这不再与莫哈韦沙漠有关吗?
答案 0 :(得分:0)
我发现了问题。我的问题是我在“黑暗模式”下运行。
如果要为DarkMode设置安装程序的背景图像,则需要使用标签background-darkAqua
,否则它将永远不会显示:
<background-darkAqua file="background.png" mime-type="image/png" scaling="tofit"/>