Excluding package managers, what are some good installation tools for creating software installation programs on Linux? (for example, AutoPackage)
feedback
|
migrated from stackoverflow.com Apr 14 '10 at 19:10
This question came from our site for professional and enthusiast programmers.
|
Main tools for creating installation packages for Linux are RPM and DPKG. Beside this there are some tools like Autopackage and BitRock Installer. | ||||
|
feedback
|
|
First, several questions:
While you're thinking about that... The standard build/install tool for open source software is GNU Autoconf. By using this when you distribute your source code, users get a standard way to install your software: The other popular way to do this is just write a Bash script yourself that copies files into the right location. This would work better for binary packages. Once you have either of these working, you could use RPM or DPKG to make a package, if you felt like making life easy on your users. Really, this is the best way to make your software available to Linux. Is there a particular reason you want to avoid this? | ||||
|
feedback
|