What is the Linux equivalent of Inno Setup on Windows?

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












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?







share|improve this question


















  • 1




    What is Inno setup?
    – Pierre.Vriens
    Oct 16 '17 at 7:23










  • Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
    – Philippos
    Oct 16 '17 at 7:27










  • My project does not need that, no.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:41










  • @Pierre.Vriens It's a great little tool to create installers on windows.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:42














up vote
1
down vote

favorite












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?







share|improve this question


















  • 1




    What is Inno setup?
    – Pierre.Vriens
    Oct 16 '17 at 7:23










  • Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
    – Philippos
    Oct 16 '17 at 7:27










  • My project does not need that, no.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:41










  • @Pierre.Vriens It's a great little tool to create installers on windows.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:42












up vote
1
down vote

favorite









up vote
1
down vote

favorite











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?







share|improve this question














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?









share|improve this question













share|improve this question




share|improve this question








edited Oct 16 '17 at 9:24









Jeff Schaller

32.1k849109




32.1k849109










asked Oct 16 '17 at 7:12









Wolfyaskingstuff

113




113







  • 1




    What is Inno setup?
    – Pierre.Vriens
    Oct 16 '17 at 7:23










  • Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
    – Philippos
    Oct 16 '17 at 7:27










  • My project does not need that, no.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:41










  • @Pierre.Vriens It's a great little tool to create installers on windows.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:42












  • 1




    What is Inno setup?
    – Pierre.Vriens
    Oct 16 '17 at 7:23










  • Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
    – Philippos
    Oct 16 '17 at 7:27










  • My project does not need that, no.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:41










  • @Pierre.Vriens It's a great little tool to create installers on windows.
    – Wolfyaskingstuff
    Oct 16 '17 at 7:42







1




1




What is Inno setup?
– Pierre.Vriens
Oct 16 '17 at 7:23




What is Inno setup?
– Pierre.Vriens
Oct 16 '17 at 7:23












Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
– Philippos
Oct 16 '17 at 7:27




Important to know: Does your project need external dependencies (libraries that are not necessary installed on every system, certain version of glibc)? And: On what systems do you want it to run (only AMD64 or also x86, ARM, whatever?
– Philippos
Oct 16 '17 at 7:27












My project does not need that, no.
– Wolfyaskingstuff
Oct 16 '17 at 7:41




My project does not need that, no.
– Wolfyaskingstuff
Oct 16 '17 at 7:41












@Pierre.Vriens It's a great little tool to create installers on windows.
– Wolfyaskingstuff
Oct 16 '17 at 7:42




@Pierre.Vriens It's a great little tool to create installers on windows.
– Wolfyaskingstuff
Oct 16 '17 at 7:42










1 Answer
1






active

oldest

votes

















up vote
3
down vote













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.






share|improve this answer




















  • Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
    – Wolfyaskingstuff
    Oct 16 '17 at 7:55







  • 2




    No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
    – Stephen Kitt
    Oct 16 '17 at 8:52










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f398341%2fwhat-is-the-linux-equivalent-of-inno-setup-on-windows%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote













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.






share|improve this answer




















  • Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
    – Wolfyaskingstuff
    Oct 16 '17 at 7:55







  • 2




    No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
    – Stephen Kitt
    Oct 16 '17 at 8:52














up vote
3
down vote













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.






share|improve this answer




















  • Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
    – Wolfyaskingstuff
    Oct 16 '17 at 7:55







  • 2




    No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
    – Stephen Kitt
    Oct 16 '17 at 8:52












up vote
3
down vote










up vote
3
down vote









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.






share|improve this 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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 16 '17 at 7:19









Stephen Kitt

144k22315379




144k22315379











  • Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
    – Wolfyaskingstuff
    Oct 16 '17 at 7:55







  • 2




    No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
    – Stephen Kitt
    Oct 16 '17 at 8:52
















  • Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
    – Wolfyaskingstuff
    Oct 16 '17 at 7:55







  • 2




    No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
    – Stephen Kitt
    Oct 16 '17 at 8:52















Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
– Wolfyaskingstuff
Oct 16 '17 at 7:55





Thanks for correcting me! I am looking for installation tools and not building tools. Are there some more tools you would recommend besides MojoSetup?
– Wolfyaskingstuff
Oct 16 '17 at 7:55





2




2




No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
– Stephen Kitt
Oct 16 '17 at 8:52




No; the only other installation tools I’m aware of are InstallJammer, which is discontinued, and InstallAnywhere, which is commercial. It’s quite unusual to rely on installers on Linux systems...
– Stephen Kitt
Oct 16 '17 at 8:52

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f398341%2fwhat-is-the-linux-equivalent-of-inno-setup-on-windows%23new-answer', 'question_page');

);

Post as a guest













































































8NJTWq,Grh7dcM,vgXFH EqBjHwyMP
W8 9yjBCW0p 8gMdpxXimySB5fx5epK4gSRHLPuutM Mke0a,DK51eJ Oh3 F93aKiW,1,AEQaTXxjo89zrI8k7ozR3,qL

Popular posts from this blog

How to check contact read email or not when send email to Individual?

How many registers does an x86_64 CPU actually have?

Displaying single band from multi-band raster using QGIS