I need to build dmg installer of a mac app. I heard that can make it through apple script. Can anybody help how this can be done easily. Also I am not aware of Apple Script.
Thanks in advance
I need to build dmg installer of a mac app. I heard that can make it through apple script. Can anybody help how this can be done easily. Also I am not aware of Apple Script.
Thanks in advance
Use hdiutil
command for creating dmg.
hdiutil uses the DiskImages framework to manipulate disk images. Common verbs include attach, detach, verify, create, convert, compact, and burn.
hdiutil create -ov -srcfolder source applicationName.dmg
Take a look at How do I create a nice-looking DMG for Mac OS X using command-line tools?