我想创建一个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>
但它不起作用。。。
是否可以通过pkgbuild
或productbuild
?
我想好了怎么做。
-
pkgbuild --root <path to app> --identifier <identifier> --scripts <path to scripts>--install-location Applications/Name.app Package.pkg
-
productbuild --synthesize --package ./Package.pkg Distribution.xml
-
通过在
installer-gui-script
中添加标记来编辑文件Distribution.xml:<domains enable_anywhere="false" enable_currentUserHome="true" enable_localSystem="false"/>
-
productbuild --distribution ./Distribution.xml --package-path ./Package.pkg Product.pkg