My APT repo for iOS tools (like partialZipBrowser by tihmstar)
First, get the GPG key:
wget https://iostoolkitrepo.netlify.app/public.key -O ~/iostoolkitrepo_public.keyThen, copy it and delete it from your home directory (this is harmless unless the key is deleted from /usr/share/keyrings):
sudo gpg --dearmor -o /usr/share/keyrings/iostoolkitrepo.gpg ~/iostoolkitrepo_public.key
rm ~/iostoolkitrepo_public.keyAnd finally, add the repo and update APT:
echo "deb [signed-by=/usr/share/keyrings/iostoolkitrepo.gpg] https://iostoolkitrepo.netlify.app/ stable main" | sudo tee /etc/apt/sources.list.d/iostoolkitrepo.list
sudo apt update