Hi, I’m looking to open-source a small CLI application I wrote and I’m struggling with how to provide the built app since just providing the binary will not work. I had a friend test it and he had to compile from source due to glibc version differences.

My first thought was providing it as a flatpak but that isn’t really suitable for CLI software.

I’ve googled around a bit and most guides I find just mention packaging separately for multiple package managers/formats (rpm, apt etc.). This seems really inefficient/hard to maintain. What is the industry standard for packaging a Linux software for multi-distro use?

7 points

Just build the app on very old distros like Ubuntu 16.04 if possible. But in general, packaging should be handled by the maintainer. If you want to be both a developer and maintainer, packaging problems will take up 75% of your time.

It’s not really hard for us users to follow your README and just copy the built binary to ~/.local/bin.

permalink
report
reply
2 points

Hi thanks for the reply. Could you elaborate on why building for an old distro may be benefitial/a good solution? Thanks for mentioning this developer/maintainer dynamic. It’s not a concept I was aware of.

Do you have any projects with good READMEs you could point me to, so I can get an idea of what’s important to address?

permalink
report
parent
reply
1 point

If you build your app with glibc 2.32 and then run it with glibc 2.39, it will run fine. But it won’t work the other way around.

There is no best README template, but for my personal projects I use this:

  1. Title
  • Brief description of the project
  • Features
  1. Build
  • List of supported OS
  • List of dependencies (what packages do I need to build your application)
  • Commands to build the application (what do I need to do to build your application)
  • Binary Locations (where can I find the built binary)
  1. Usage
  • Program arguments (what do I need to provide to use your CLI application)

You can find an example here. I’m not saying this is the best README, but I think it’s simple and informative.

permalink
report
parent
reply
6 points

You don’t have to!

If a downstream distribution wants your software they will build and package it themselves and maintain that infrastructure.

You could provide an example rpm spec (etc) to make their lives easier but it’s not on you to provide a binary package that works everywhere; you released the source code so any given user / distro can compile it for themselves.

Just make sure that your build infrastructure and docs are up to speed, and ideally implement some CI/CD and testing to catch any breaking changes.

permalink
report
reply
2 points

I see, thanks for the info. I wasn’t even aware that this developer/maintainer dynamic exists. It makes a lot of sense though. I’ll start by creating some documentation about building the software and then maybe create an example package for rpm.

permalink
report
parent
reply
2 points

This dynamic does exist, but you have to build something useful to the likes of Debian and Redhat and that’s a tall order. You should look into Linux brew, it’s a community maintained package management system that might be more suitable for your scale https://docs.brew.sh/Homebrew-on-Linux

permalink
report
parent
reply
1 point
*

This only applies if your program becomes popular or you go to a huge amount of effort packaging it yourself. And even then updates are going to be a huge pain. Do you want your users to be able to use the latest version easily?

There’s quite a big gap between “no users” and “included in all distros” where this advice doesn’t apply.

permalink
report
parent
reply
2 points

the best possible “industry standard” in my opinion is nix, but people need to install it on their machine, other than that don’t package lol, put a curl link in your github/gitlab to how install it and problem solved lol

permalink
report
reply
1 point
*

Just make sure you have good build instructions and maybe an install target to put it in /usr/local/bin

If you’re using C/C++ with Meson it will handle this for you, so long as your targets have install: true set. As other users have said it may get picked up eventually by a distro.

If you want to create packages there is this tool which is used by LACT (AMD GPU overclocking tool) to generate rpms and debs from a single manifest: https://github.com/vv9k/pkger/

permalink
report
reply
1 point
*

I have seen some CLI tools distributed via docker. You build a docker image and push to dockerhub, then supply a commandline like:

docker run -it -v workdir:workdir myapp:latest myapp [my app args]

I cant think of an IRL example for this, but I have seen it a few times.

My own example: https://github.com/cameroncros/idevicerestore/tree/docker-container?tab=readme-ov-file#docker

permalink
report
reply

Learn Programming

!learn_programming@programming.dev

Create post

Posting Etiquette

  1. Ask the main part of your question in the title. This should be concise but informative.

  2. Provide everything up front. Don’t make people fish for more details in the comments. Provide background information and examples.

  3. Be present for follow up questions. Don’t ask for help and run away. Stick around to answer questions and provide more details.

  4. Ask about the problem you’re trying to solve. Don’t focus too much on debugging your exact solution, as you may be going down the wrong path. Include as much information as you can about what you ultimately are trying to achieve. See more on this here: https://xyproblem.info/

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

Community stats

  • 2

    Monthly active users

  • 102

    Posts

  • 481

    Comments