How to create an executable installer for Mac?

3

I have previously created (with Inno Setup , pascal) an installer for windows (Aqui el Link ) which has personalized pages, text fields, combo box, radio buttons, scripts, license , installation modes, among others, this is my installer for Windows:

  • I've been researching how to replicate it on the Mac, since I want to do a native installer.

  • I've found Packages , that you can create Plug-Ins but not I found the function of skipping pages as well as the installer that I created.

  • I found PackageMaker (Apple) and it was the same, I can not create such a custom installer.

I found that Opera has a custom installer, it's more or less what I want to achieve (Next, next, back, etc.) but I can not find a way to do it in MacOS:

    
asked by Angel Montes de Oca 11.09.2017 в 23:09
source

1 answer

1

You can do it by creating a Cocoa Application with XCODE , you just have to create the views of the ViewController, with buttons you can switch between the views and add functionality when switching between them, so you solve the compatibility since the final result will be a .app that you can run in MacOS without installing anything, the problem is that it may be a bit complicated to create an installer from scratch.

Another option is to use the IZPACK but I do not know to what extent it can be customized, besides that it would not be native.

    
answered by 15.09.2017 / 20:36
source