linuxpackagingcommercial-application

What is the prefered way to publish a binary-only application for multiple Linux distributions?


I have a closed-source Linux application that I want to distribute. This application is using wxWidgets/GTK so there is a huge list of shared libraries (60+) that this application depends on.

What is the prefered way to publish the application and support the maximum number of distros?


Solution

  • You should have a look at the Linux Standard Base. It's designed specifically to help people in your position. It defines an environment that 3rd party application developers can rely upon - so there's set version of libc and other libraries, and certain programs and directories live in known places. All of the main Linux distribution support LSB.

    That said, you should still probably package the result specifically for each major distribution - just so that your customers can manage your app with their familiar package management tools.