为 MacOS 创建能够在用户主目录中安装的 pkg 安装程序



我想创建一个pkg文件,将捆绑包安装在用户目录(/Users//Applications/(中。

我该怎么做?

我使用的产品构建与文件传输到产品:

productbuild --component ./Bundle.app --product ./file.plist

file.plist包含

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>home</key>
<true/>
</dict>
</plist>

但它不起作用。。。

是否可以通过pkgbuildproductbuild

我想好了怎么做。

  1. pkgbuild --root <path to app> --identifier <identifier> --scripts <path to scripts>--install-location Applications/Name.app Package.pkg

  2. productbuild --synthesize --package ./Package.pkg Distribution.xml

  3. 通过在installer-gui-script中添加标记来编辑文件Distribution.xml:<domains enable_anywhere="false" enable_currentUserHome="true" enable_localSystem="false"/>

  4. productbuild --distribution ./Distribution.xml --package-path ./Package.pkg Product.pkg

相关内容

  • 没有找到相关文章

最新更新