15
How to efficiently package CLI application on linux
(lemmy.world)
Ask the main part of your question in the title. This should be concise but informative.
Provide everything up front. Don't make people fish for more details in the comments. Provide background information and examples.
Be present for follow up questions. Don't ask for help and run away. Stick around to answer questions and provide more details.
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
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
.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?
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:
You can find an example here. I'm not saying this is the best README, but I think it's simple and informative.