vote up 3 vote down star
1

Possible Duplicate:
How do I create a nice-looking DMG for Mac OS X using command-line tools?

I want to release an OS X application. The application should be shipped in a mountable .dmg volume.

The .dmg folder should provide some visual sugar like for example the installs for Adium and Firefox (and many other OS X applications). For example, the Adium installer looks as follows:

Adium installer

Such a look can be achieved by using OS X’ “Disk Utility” to create a read/write .dmg archive of some folder, and then setting the following options after pressing +J:

  • Set icon sizes
  • Set a grid,
  • Align icons to grid
  • Set background image:
    • Create hidden folder
    • Make folder visible manually inside the Finder using a small trick
    • Use the folder properties to assign the background picture

After that, we use the “Disk Utility” again to make the .dmg archive read-only (or compressed).

That works almost perfectly (somehow, setting the icon for the volume doesn’t work but never mind) but these are a lot of steps that have to be performed manually, for every single release. That’s not acceptable.

I would therefore like to know: is there any way to automate the process? In particular, I really would like to do this via the command line, not using GUI applications at all. That includes changing the folder properties (which get saved in the rather obscure .DS_Store file). Unfortunately, simply copy/pasting the .DS_Store file into the (readable) mounted archive doesn’t seem to work.

flag

Uh … why am I not able to close my own question? – Konrad Rudolph Oct 3 at 14:08
@Konrad: Probably because it already had too many upvotes. IIRC if there are at least two upvotes you can't just close it anymore. – sth Oct 3 at 22:11

closed as exact duplicate by gs, ChrisN, Konrad Rudolph, coobird, sth Oct 3 at 22:11

1 Answer

vote up 3 vote down check

Yes, you can. Check the answers to this question. The short story is that you have to use applescript to fake the manual steps (by sending keycodes to the various property windows involved). After very much research I am quite positive that this is the only way. There are commercial tools available that can do this as well (but they still do it like that).

Note: I just updated the linked question with a complete answer (including sample code) to my own question (I thought that I already had done that...). Ignore the quite silly "don't go there" - type of answers. It is possible automate this.

link|flag
Thanks, although using Apple Script is exactly what I wanted to avoid. Ah well … :-( – Konrad Rudolph Oct 3 at 14:07

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