The Linux equivalent of Inno Setup on Windows

autotoolscmakesoftware installationsoftware-rec

Looking to create a Linux installer that will work similar to Inno Setup on Windows (which is a great little tool to create installers on Windows).

My project is really simple (just a couple of folders) so I think that using autotools or cmake is too much effort.

Is there something that is straightforward like Inno Setup but for Linux?

Best Answer

The closest, widely-used installer on Linux is MojoSetup, which you’ll see in action on lots of Linux games (including all the GOG.com Linux games).

You’re comparing apples and oranges though: cmake and the Autotools are build tools, not installation tools. If you want to ship a binary, most Linux users would expect either a distribution package (typically, .deb and/or RPM), or just a tarball containing the installation tree (/usr/local/bin with your binary and supporting files in the appropriate places). If you want a simpler build system, you might find the Meson Build system interesting.

Related Question