A CLI tool to look for AppImages in your $PATH and call appimageupdatetool to update them
Build, and install to $HOME/.cargo/bin
in one command via cargo
:
cargo install --locked --git https://github.com/pirafrank/appimage_updater
Or download binary from the latest release.
Download the new binary version and overwrite old one.
Or, if installed via cargo
, re-run the cargo install
command.
git clone https://github.com/pirafrank/appimage_updater.git
cd appimage_updater
cargo build
Build a release for your current platform triple.
Currenly supported triples are listed in rust-toolchain.toml
file.
just release
# add to path, e.g.:
# cp ./target/release/appimage_updater ~/.local/bin/
# 4 threads by default
appimage_updater
# 2 threads
appimage_updater -j 2
cargo install cross
just release_all
- Add target to rustup:
rustup target add aarch64-unknown-linux-gnu
- then cross-compile via
cargo
:
sudo apt-get install gcc-aarch64-linux-gnu
cargo build --release --target aarch64-unknown-linux-gnu