Lion OSX 上 .pkg 文件的自定义图标
我已经使用 PackageMaker 创建了一个包,并且想要更改 .pkg 文件的默认图标。 经过一番谷歌搜索后,这里的 seticon 实用程序 http://sveinbjorn.org/osxutils_docs 解决了我所有 OSX 的问题 -除最新的 Lion 10.7(内核 11.0.0)外。默认图标已替换为对双击不敏感的灰色方块,看起来像损坏的文件关联。
另外两天的谷歌搜索让我了解了一些有关资源分支、SetFile(1) 和其他一些有用的人员的知识,例如这个旧线程 更改包制造商创建的包的图标但仍然没有运气。
我正在尝试做类似的事情:
目标=pack.pkg
icon_filename="$(perl -e '打印"图标\r"')"
触摸“$target/..namedfork/rsrc/$icon_filename”
cp“Icon.icns”“$target/..namedfork/rsrc/$icon_filename”
/Developer/Tools/SetFile -a C "$target"
并获取: build-Mac:pack.pkg/..namedfork/ 不是目录。
我做错了什么?有谁能告诉我 Lion 中资源分叉的区别吗?还有其他可用脚本的解决方案吗?
请注意,我是 MAC 方面的新手,希望为傻瓜提供详细的答案。
I have created a package using PackageMaker and want to change the default icon for .pkg file.
After some googling, seticon utility from here http://sveinbjorn.org/osxutils_docs solved my problem for all OSX-es except the latest Lion 10.7 (Kernel 11.0.0). The default icon was replaced by grey square insensitive for double clicks, looks like broken file association.
Additional two days googling gave me some knowledge about resource fork, SetFile(1) and some other useful staff like this old thread Changing icon of package created by package maker but still no luck.
I am trying to do something like:
target=pack.pkg
icon_filename="$(perl -e 'print "Icon\r"')"
touch "$target/..namedfork/rsrc/$icon_filename"
cp "Icon.icns" "$target/..namedfork/rsrc/$icon_filename"
/Developer/Tools/SetFile -a C "$target"
and getting:
build-Mac:pack.pkg/..namedfork/ not a directory.
What am I doing wrong? Does anyone can tell me the difference in resource fork in Lion? Any other script-able solution?
Please note, I am a total newbie in MACs and will appreciate a detailed answer for dummies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于想出来了,放在这里,以备不时之需的人。我使用苹果脚本:
I have finally figured out it, in case of someone need it, putting it here. I used apple script: