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:

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.
