How do you guys get software that is not in your distribution’s repositories?

    • ILikeBoobies@lemmy.ca
      link
      fedilink
      arrow-up
      2
      ·
      23 days ago

      Rpg paper maker

      Though the Linux version is now in a “do not use” state. The developer decided to just make it into a web app because it was only working on Ubuntu

      • SorryQuick@lemmy.ca
        link
        fedilink
        arrow-up
        2
        ·
        1 month ago

        That’s exactly what the vast majority of AUR packages do already? You can also apply modifications to the compilation process if needed.

    • hperrin@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      My software, QuickDAV, is not in the AUR. It’s open source, and I release it only as an AppImage, because I am lazy.

      • folkrav@lemmy.ca
        link
        fedilink
        arrow-up
        1
        ·
        1 month ago

        I guess we should have added the word “notable”

        I’m terribly sorry, you left the door wide open ;)

        I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

        • Samueru@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          1 month ago

          I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

          The appimage is basically just git clone -> make -> make install DESTDIR=/path/to/AppDir -> wget appimagecreationtool and finally appimagecreationtool /path/to/AppDir and that’s it you have your appimage.

          appimagecreationtool being several tools that can create the appimage from an AppDir, like linuxdeploy, linuxdeploqt, go-appimage, etc

          And that on itself isn’t complex either, it if basically running ldd on the binary, then copy those libraries into the AppDir and finally run patchelf to patch the paths in the binaries and libraries, suyu uses a deploy script instead of using those tools, which I’ve recently forked and began expanding.

          I don’t know how easy it is to make a flatpak or snap, but I do know the dev of zen browser hates dealing with the flatpak and iirc right now the flatpak is outdated as result.

          EDIT: Also lite-xl has been making a flatpak for like 2 years and it isn’t ready yet.

        • hperrin@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          1 month ago

          Ouch. xD

          It’s super easy to create. And you distribute it on your own, so it’s basically like an installer exe on Windows. In my mind it’s one step above only offering source code.

      • oldfart@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        1 month ago

        There’s so much random, useful software distributed only as appimages. But not notable enough for packaging fanboys.