This repository hosts compiled Debian distributions for the local76 ecosystem (specifically fly). It functions as a flat package repository served directly via GitHub Pages raw file endpoints.
Supported formats:
- APT (Debian, Ubuntu, Pop!_OS)
You can configure the GPG key, register the repository, and update your packages list in a single command:
curl -fsSL https://local76.github.io/apt/install.sh | sudo bashOnce complete, you can install your desired software:
sudo apt install flyIf you prefer to perform the setup steps manually:
-
Import the repository GPG key:
sudo mkdir -p /etc/apt/keyrings curl -fsSL https://local76.github.io/apt/local76-key.gpg | sudo gpg --dearmor --yes -o /etc/apt/keyrings/local76-keyring.gpg -
Add the repository entry:
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/local76-keyring.gpg] https://local76.github.io/apt flux main" | sudo tee /etc/apt/sources.list.d/local76.list
-
Update and install packages:
sudo apt update sudo apt install fly