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?
feedback
|
|
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:
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
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 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. | ||||
|
feedback
|
|
Disk Utility (It's in Applications\Utilities) Go to | |||||||
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 | |||
|
feedback
|
|
You could also try DMG Canvas | |||
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 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. | |||
|
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 | |||
|
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:
The problem is creating the perfect If your app suppports Leopard I recommend DMG Canvas to manage the whole process or at least to obtain the | |||
|
feedback
|