I am developing an application in Cocoa. I need to create a DMG file to install my application like Adium (which provides a nice UI to drag the app file to Application folder). Is there a tool for this?

link|improve this question

38% accept rate
5  
To whomever voted to close this, I'd disagree that this /necessarily/ belongs on SuperUser.com, just because there are programmatic ways to accomplish it, and it's more related to programming than end users, since this it about app deployment. – Quinn Taylor Aug 6 '09 at 17:43
1  
If a DMG isn't really necessary, use a zip. This is much less confusing to new Mac OS X users than a DMG. – WTP'-- Aug 3 '11 at 11:16
feedback

8 Answers

If you have a single file that the user would probably copy to the Applications directory, an "internet-enabled" disk image is a nice alternative. When you download one using Safari (I know, not everyone uses Safari), it automatically mounts it, copies the contents to the download location, then unmounts the DMG and moves it to the trash. The application doesn't automatically go to Applications, but it's on the user's HD and they don't have to worry about fiddling with the disk image.

Disk images can be internet-enabled with a single Terminal command:

hdiutil internet-enable -yes "MyDiskImage.dmg"

This should work on any DMG file. If you want users to see your pretty background, you might not want to do this. However, for simple payloads it's a nice way to go. (Of course, some people would prefer to create a ZIP file for this sort of deployment, anyway.)


I find that manually creating a DMG can be a pain. You can actually automate creation of a simple DMG in your Xcode project. Just create a Shell Script Target (Project → New Target...) and use hdiutil in the script. The command would look something like this (substituting the proper names and directories):

hdiutil create -fs HFS+ -volname "MyApp 1.0" -srcfolder \
"/directory/with/contents/to/package/" "~/Desktop/MyApp-1.0.dmg"`

You'll need to put all the stuff you want to include in the disk image in a single directory, but if you're not afraid of using cp in Terminal, this is easy to do.

If you would like to see an example, I use this approach in CHDataStructures.framework myself. If you check out the code and open in Xcode, the second script in the Deployment target creates the DMG.

link|improve this answer
feedback

Disk Utility (It's in Applications\Utilities)

Go to File > New > Disk Image From Folder, then select the folder you want to create an image of. The resulting .dmg will replicate the folder you used to make the image, down to the positions of the icons.

link|improve this answer
1  
Seriously, why pay for a shareware when there is this handy utility? – Philippe Dec 14 '10 at 10:58
This method does not, actually, preserve the top-level icon positions and view options. – Michael Tsai Mar 27 '11 at 1:24
feedback

Dr. Nic put together a nice ruby gem that does most of this work for you, you just need to supply the xcode project and some graphics. The link is here:

http://drnicwilliams.com/2009/02/03/choctop-packaging-and-deployment-of-cocoa-applications/

It is a great package, takes care of tasks that are otherwise a pain...

-- Evan

link|improve this answer
Thanks for mentioning this, just what I was looking for. – Lou Z. Mar 1 '10 at 5:15
feedback

Try DropDMG.

link|improve this answer
feedback

You could also try DMG Canvas

link|improve this answer
Oooh, shiny! For a DMG custom with precise layout, that looks extremely nice... – Quinn Taylor Aug 6 '09 at 15:34
feedback

And because there aren't enough answers already...

I created a read-write DMG with the layout I wanted -- background image, size, shortcut to Application icon, and an empty folder to stand in for my application. I wrote a simple bash script to make a copy of this DMG, mount it, copy my application over the empty folder, unmount the DMG, and then convert it to read-only.

But DMG Canvas can do this whole process for you, and also provides a command line tool you can use to automate this process from your Xcode builds, so I would really recommend that over my solution.

link|improve this answer
feedback

MacBreak Dev did a nice little screencast about creating DMG files using an Automator workflow. Makes things very easy, very quick and you can have a custom background to your DMG. You can see it at: http://www.pixelcorps.tv/mbkd_010

link|improve this answer
Link doesn't seem to work any more unfortunately. – Cragly Jun 4 '11 at 10:06
feedback

Mozilla build scripts are a great source if you want to write your own script. Using pkg-dmg you can customize the background image, the volume name, add a license, icon, etc. Example:

pkg-dmg \
    --verbosity 2 \
    --volname "MegaFinder" \
    --source MegaFinder.app \
    --sourcefile \
    --target MegaFinder.dmg \
    --license Licence.txt  \
    --icon MegaFinderVolumenIcon.icns  \
    --copy MegaFinderCustomizedDS_Store:.DS_Store \
    --mkdir .background \
    --copy MegaFinderBackgroundImage.jpg:.background/backgroundImage.jpg \
    --symlink  /Applications:Applications \
    --attribute V:.background \
    2>&1 > /dev/null

The problem is creating the perfect .DS_Store. For simple cases you can create .DS_Store customizing the mounted dmg volume in Finder (Show View Options). You'll need to create a writable image, customize it, unmount (to commit changes) and finally mount again to copy the resulting .DS_Store as MegaFinderCustomizedDS_Store (as it appears in above example)

If your app suppports Leopard I recommend DMG Canvas to manage the whole process or at least to obtain the .DS_Store. It has a command line tool too.

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.