Amiberry Package Repository

Official package repository for Amiberry — Amiga emulator

Quick Install

The easiest way to set up the Amiberry repository:

curl -fsSL https://packages.amiberry.com/install.sh | sudo sh

This script auto-detects your Linux distribution and configures the repository.

Supported Distributions

Distribution Versions Package Manager
Ubuntu 22.04 LTS, 24.04 LTS, 25.10 apt
Debian 12 (Bookworm), 13 (Trixie) apt
Raspberry Pi OS Bookworm, Trixie apt
Fedora 39, 40, 41 dnf
RHEL / CentOS / Rocky / AlmaLinux 8, 9 dnf

Manual Installation

Ubuntu / Debian / Raspberry Pi OS

  1. Download the GPG signing key:
    sudo curl -fsSL https://packages.amiberry.com/gpg.key -o /usr/share/keyrings/amiberry-archive-keyring.gpg
  2. Add the repository to your sources (replace jammy with your release codename):
    echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/amiberry-archive-keyring.gpg] https://packages.amiberry.com/apt jammy main" | sudo tee /etc/apt/sources.list.d/amiberry.list
  3. Update package lists and install:
    sudo apt update sudo apt install amiberry

Fedora / RHEL / CentOS / Rocky / AlmaLinux

  1. Download the repository configuration:
    sudo curl -fsSL https://packages.amiberry.com/rpm/amiberry.repo -o /etc/yum.repos.d/amiberry.repo
  2. Import the GPG signing key:
    sudo rpm --import https://packages.amiberry.com/gpg.asc
  3. Install Amiberry:
    sudo dnf install amiberry

GPG Key Verification

All packages in this repository are signed with the following GPG key:

Fingerprint:
D74D 5252 5340 C442 A4F8 B657 A12B 57C0 4E1F E282

You can verify the key fingerprint after importing it:

gpg --show-keys /usr/share/keyrings/amiberry-archive-keyring.gpg

Troubleshooting

Repository not found? Make sure you've replaced the release codename (e.g., jammy, bookworm) with your actual distribution release. Run lsb_release -cs to find your codename.
GPG signature verification failed? Ensure the GPG key was downloaded correctly and placed in /usr/share/keyrings/amiberry-archive-keyring.gpg.
Package not available? Run sudo apt update (or sudo dnf makecache on Fedora) to refresh the package cache.