FAQ


Why isn't my distro supported?

In order to support a distro, LURE has to be able to talk to its package manager as well as build packages for it. Talking to the package manager is relatively simple, LURE just needs to be told which commands to run, but the package formats are much more complex. LURE uses nFPM to handle package formats, and nFPM supports only deb, rpm, apk, and archlinux package formats. When I started LURE, nFPM didn't have support for archlinux packages, so I added it in a PR. Despite Arch having a very simple package format, it took over 1k lines of code to implement, so supporting a distro with a different format, like xbps for Void Linux, is very complicated, and may take some time.


Why use LURE instead of Flatpak, Snap, or AppImage?

LURE is not meant to solve the same problems as Flatpak, Snap, and AppImage. These are containerized package formats that allow the creation of a single package that works on all distros. This cross-platform package contains the program as well as everything else needed for that program to run. It works using something called a container, which can create issues where programs are slow to start, don't follow your system's settings, or can't access certain parts of your system. If you want most programs to work every time, or you're running an old distro with old packages, you should use containzerized formats. LURE, on the other hand, does not use containers. It builds the program from source automatically and installs it. It also doesn't have its own package format. Instead, it uses the same one as the distro it's running on, making LURE packages act the same way as your distro's packages. This means that unlike Snap and Flatpak, LURE is not a package manager. It simply uses your distro's package manager, which allows you to manage the packages installed by LURE even without it installed.


However, LURE also has some downsides. Because of the fact that it builds programs automatically from source, certain packages, especially git packages that retrieve the latest code from git, may not work on older distros, or distros like Debian which have old packages. Please consider your use case and whether such downsides are acceptable before using LURE. Also note that, like the AUR, all packages are user-submitted and are not vetted, so while unlikely, they may contain malicious code. It is the responsibility of the user to read the build script and ensure this is not the case. Malicious packages should be reported by opening an issue on the git repo containing them.


How do I add my own package to LURE?

Take a look at the documentation for Build Scripts and Adding Packages to LURE's repo.