Debian repository for my packages
- bash-utils: Custom bash commands for added shell functionality
Add the PPA's key and source list
curl -s --compressed "https://addisonklinke.github.io/ppa/KEY.gpg" | sudo apt-key add -
sudo curl -s --compressed -o /etc/apt/sources.list.d/addisonklinke.list "https://addisonklinke.github.io/ppa/addisonklinke.list"
sudo apt update
Select your desired packages
sudo apt install package1 package2 package3
Place the deb file inside the repository's root directory, and then run
[email protected]
dpkg-scanpackages --multiversion . > Packages
gzip -k -f Packages
apt-ftparchive release . > Release
gpg --default-key "${EMAIL}" -abs -o - Release > Release.gpg
gpg --default-key "${EMAIL}" --clearsign -o - Release > InRelease
Please review the license policy in the linked repository for each package
Based on the tutorial by Assaf Morami