cargo-appimage
cargo-appimage copied to clipboard
Converts your crate into an AppImage
Basically, allowing appimagetool args `["--sign", "-u", "gh-releases-zsync|lexi-the-cute|catgirl-engine|latest|*-x86_64.zsync"]` on the command line so each build can have different args
This tool should allow custom cargo args so I can do things like `--features appimage` for modifying the executable if it's built for an appimage environment
* fixes https://github.com/StratusFearMe21/cargo-appimage/issues/31 * also adds `startup-wm-class` which can be checked with `qdbus org.kde.KWin /KWin queryWindowInfo` * and adds the ability to customizing the name of the desktop file
icon.png's path should be able to be specified from the cargo config otherwise it defaults to icon.png in the current working directory
```bash ─redhawk🎉Mythra─ ~/Code/code-editor └$ ./target/appimage/code-editor.AppImage Error: couldn't exec process: No such file or directory ``` And this is my build process ``` ─redhawk🎉Mythra─ ~/Code/code-editor └$ cargo appimage Finished release [optimized]...
Trying to compile a project with a Cargo.toml referring to a specific package seems to fail, as Cargo AppImage can not find the Cargo.toml. After a successful CI build, it...
Ergonomic issues, or where everything goes. - **cargo appimage** puts the output file is stored into the root directory of the project. This violates the Cargo rule that all artifacts...
When I attempt to run my AppImage on another computer, I'm getting this error message: *** stack smashing detected ***: terminated Aborted I can't seem to track down what is...
In my `Cargo.toml` I have ``` [package.metadata.appimage] auto_link = true ``` but glibc is not included and if I run my appimage on the older system then I get the...
These changes were made in this PR: - Add a CI/CD for - build - fmt - clippy - test - Update rust edition to 2024 - Update dependencies -...