TL;DR. Due to technical reasons, I've migrating from Ubuntu Launchpad PPA to self-hosted repository. To perform automatic migration, run this command (root access required):
curl -Sl https://deb.mmk.pw/setup | sudo bash -
After that, you'll continue to receive updates of my applications, like OpenFreebuds, ZMake, ZeppPlayer.
Why I'm migrated to self-hosted repo
- Much faster upload & build
- Support of Debian distribution, not only Ubuntu
- Ability to upload packages for out-of-support versions of Ubuntu, like 22.10
I don't want to run unknown scripts, how-to setup all by myself
This is the long way.
# Remove old repository
sudo add-apt-repository -r ppa:melianmiko/software
# Add key to trusted APT keys
curl -s https://deb.mmk.pw/pubkey.gpg| gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/melianmiko-pub.gpg > /dev/null
# Connect repo, replace `bookworm` with your distribution codename
# Supported: bookworm, jammy, kinetic, lunar
echo 'deb https://deb.mmk.pw/ bookworm main' | sudo tee /etc/apt/sources.list.d/melianmiko-repo.list > /dev/null
# Update apt cache
sudo apt update