-
-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AppImage Release #270
Comments
This script turns the released binary into a appimage.
It uses go-appimagetool instead as it makes the appimage with the static runtime which means there is no libfuse2 requirement on the host. |
I tried to add an appimage job ci However I get error I don't know how to make it available. |
The CI should be using the .AppImage releases of |
The Case for AppImage
I see that there is discussion about a Flatpak release and that's great. But for now, there is a single binary. Usually this type of single file release uses AppImage format. There is commonly used tooling to essentially install an AppImage, providing a taskbar shortcut with an icon, adding it to the application launcher, etc. When foregoing package managers, AppImage is a more polished and user friendly release that accommodates the Linux user's GUI. People don't really want to start a graphical app with the terminal.
Furthermore, converting the binary into an AppImage is super easy. It will take literally two minutes and it will work the first try.
How to Convert the Linux Binary to an AppImage File
I'm not experienced with Github release CLI or whatever, so I'll just explain how I converted the binary to an AppImage.
Create the following directory structure:
Copy and paste the AppRun file:
Copy and paste the Lorien.desktop file:
Make AppRun and Lorien (the Lorien binary, I might have renamed it) executable.
Download the appimagetool (itself an AppImage!) which is the official software used to build an AppImage: https://github.com/AppImage/AppImageKit/releases
Then simply:
./appimagetool-x86_64.AppImage Lorien.AppDir
That will produce the Lorien-x86_64.AppImage file which can be included as a release.
Then the Linux user can use their GearLever or whatever to install the program, and they will be appreciative.
The text was updated successfully, but these errors were encountered: