-
-
Notifications
You must be signed in to change notification settings - Fork 19
Installation
Martin Olivier edited this page May 13, 2024
·
18 revisions
Pre-built releases for Debian
, RedHat
, and ArchLinux
based distributions are available here.
Support for x86_64
and aarch64
architectures is available.
To download and install airgorah
from pre-built releases, you will just need to use the following command:
wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.deb && \
sudo apt update && \
sudo apt install ./airgorah_0.7.3_`arch`.deb
wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.rpm && \
sudo dnf update && \
sudo dnf install ./airgorah_0.7.3_`arch`.rpm
wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.pkg.tar.zst && \
sudo pacman -Syu && \
sudo pacman -U ./airgorah_0.7.3_`arch`.pkg.tar.zst
To build the project, you will just need to have docker installed and running.
git clone https://github.com/martin-olivier/airgorah.git && cd airgorah
docker build . -t airgorah_builder
docker run --rm -v $PWD:/workspace airgorah_builder
After this step, you will be able to see the installation packages in your current directory:
├── airgorah_x86_64.deb
├── airgorah_x86_64.pkg.tar.zst
└── airgorah_x86_64.rpm
The raw binary is located at
target/release/airgorah
sudo apt update && sudo apt install ./airgorah_`arch`.deb
sudo dnf update && sudo dnf install ./airgorah_`arch`.rpm
sudo pacman -Syu && sudo pacman -U ./airgorah_`arch`.pkg.tar.zst