I've put together my very first package with PackageMaker (for a system service), but I am not happy about several faults:

  • Frequent crashes while applying target permissions to my source files
  • Package source files are not automatically or easily refreshed
  • File filter does not work

Is there something else out there more capable of this task? Free is not a requirement.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Yes it is, and yes it's buggy. Apple uses the command line version pretty much exclusively so the GUI tends to have the feeling that it's been slapped together by a summer intern and never tested.

link|improve this answer
1  
It is really good to hear that it is not just me. "it's been slapped together by a summer intern and never tested" Exactly! – Stu Thompson Oct 21 '09 at 17:29
feedback

PackageMaker is the standard, for things that need an installer (many regular applications just use a DMG, often with a background image telling the user to copy the bundle to /Applications - eg Firefox does this)

MindVision VISE is a commercial solution you can look at, used by some people, but personally I think the look & feel of the resulting installers is subtly wrong (and slightly retro) - that's a subjective viewpoint of course.

Package Maker works pretty well for many people - though documentation is rather scant; are you sure the problems you're experiencing aren't fixable?

link|improve this answer
The situation has gotten worse: It cannot run scripts on Snow Leopard during the installation, which I require. (I've another question here on SO about that.) So, at this point, no, I can't live with PackageManager as is. – Stu Thompson Oct 21 '09 at 17:33
PackageMaker (or really, Installer.app) certainly can run scripts on Snow Leopard during the installation - it's a standard feature. Is there something unusual about your setup that might be affecting the results you're getting? – James Turner Oct 22 '09 at 11:42
1  
Yes and no. To ensure that it was not what my package was doing, I made a simple test case: I created a fresh package, had it install a static file to Documents, and had it run a script that consisted only of "touch /Users/stu/hi.txt". It installed file file yet the script did not run. It's been a few weeks since I did this, I will revisit. Any thoughts would be appreciated. – Stu Thompson Oct 23 '09 at 8:22
feedback

I had the same problem until I added #!/bin/sh at the top of the script. Apparently PackageMaker needs it; I wish the log was a bit more clear about it.

IHIH, Oren

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.