Kalysto APT DEB packages repository

Dependencies

## Required to fetch our repository in https
apt-get install -y --force-yes apt-transport-https </dev/null

if ! type gpg >/dev/null; then
    apt-get install -y --force-yes gnupg2 </dev/null
fi
    

Add repository

cat <<EOF > /etc/apt/sources.list.d/kalysto.org.list

## kalysto's shell libraries
deb https://deb.kalysto.org no-dist kal-alpha kal-beta kal-main

EOF

## Include the GPG key                                                                                      
wget -O - https://deb.kalysto.org/conf/public-key.gpg | apt-key add -

## Update only this repo:                                                                                   
apt-get update -o Dir::Etc::sourcelist="sources.list.d/kalysto.org.list" \
    -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"