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?

  • 4wd@programming.dev
    link
    fedilink
    arrow-up
    7
    ·
    3 months ago

    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.

    • Lorgres@lemmy.worldOP
      link
      fedilink
      arrow-up
      2
      ·
      3 months ago

      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?

      • 4wd@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        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.

  • Vilian@lemmy.ca
    link
    fedilink
    arrow-up
    2
    ·
    3 months ago

    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

  • ⸻ Ban DHMO 🇦🇺 ⸻@aussie.zone
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    3 months ago

    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/

  • Godort@lemm.ee
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    Flatpak seems to be the way most people are doing it now.

    Prior to that, it was mostly just packaging an npm and/or deb file and telling anyone not on a redhat/debian system to build it themselves.

    • lemmyng@lemmy.ca
      link
      fedilink
      English
      arrow-up
      3
      ·
      3 months ago

      Flatpak is for GUI applications. For CLI tooling the distro package managers are still the way to go.

  • FizzyOrange@programming.dev
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    Statically link it with Musl instead. Then you don’t have do deal with bullshit glibc issues.

    For distribution I package my Rust programs as Pip packages using Maturin. Theoretically you can do the same with any language but I’ve only tried Rust.

    Why on earth would I publish pure Rust programs on PyPI you ask? I stole the idea from CMake, which is distributed there too despite being completely C++. The main advantage is that your users probably already have Pip installed no matter what distro they are using. Maybe even on Mac too. And installation is a single command. No fannying around adding custom repos and keys, making 5 different kinds of packages, etc.