I was trying to build a Windows NSIS install package on MacOS using makensis. I stumbled on a problem. The NSIS script was originally written on a Windows machine and is using a plugin called FindProcDLL to determine if the application which has to be update/upgraded with the installer is still running. When I build the NSIS script I get the error:
Obviously I have to install the plugin, but somehow I suspect the MacOS version of makensis will not be able to use the Windows version of the FindProcDLL plugin.Plugin not found, cannot call FindProcDLL::FindProc
My question is. Should the Mac version of makensis be able to use the Windows version of the plugin? If so how do I install it. I have installed makensis with homebrew.
Or do I need a Mac version of the plugin to be able to build the installer package? Or even worse: is it even possible to build install package if it needs plugins?
The reason why I would like to build the package on MacOS is to automate the build. It would be even better if the installer package could be build on Linux.
Grtz Froglis