Arch Linux (AUR)
Arch users can install the desktop app from the AUR. The package is a binary package (-bin): it repacks the official .deb from the GitHub release, so there is no long compile.
Install
bash
# with an AUR helper
yay -S linux-ai-bin # or: paru -S linux-ai-binOr manually:
bash
git clone https://aur.archlinux.org/linux-ai-bin.git
cd linux-ai-bin
makepkg -siCLI only
The lai command line is published to crates.io, so you don't need the AUR for it:
bash
cargo install linux-ai-cli # installs `lai`Maintaining the package
The recipe lives in the repo at packaging/aur/PKGBUILD. To publish a new version:
- Bump
pkgverto match the released tag (without the leadingv). - Regenerate the metadata:
makepkg --printsrcinfo > .SRCINFO. - Commit
PKGBUILD+.SRCINFOto the AUR git remote.
sha256sums are SKIPped because the binaries are versioned by tag; pin them if you prefer stricter integrity checks.