A CLI tool to look for AppImages in your $PATH and call appimageupdatetool to update them.
Download the binary from latest release and move to PATH.
cargo install appimage_updaterIf you have binstall, you can get the binary and skip compilation.
cargo binstall appimage_updaterBuild and install to $HOME/.cargo/bin compiling from source:
cargo install --locked --git https://github.com/pirafrank/appimage_updaterDownload the new binary version and overwrite old one.
If you have installed via cargo, then re-run the cargo install command.
git clone https://github.com/pirafrank/appimage_updater.git
cd appimage_updater
cargo buildBuild 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 2cargo 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