Repository for Debian GNU/Linux

Supported distributions:

To add the repository, run these script:

#!/bin/bash

if [ "$(whoami)" != "root" ]; then
	SUDO=sudo
fi

${SUDO} apt-get -y install apt-transport-https lsb-release ca-certificates
wget -qO - http://packages.deblan.org/debian/apt.pgp.key | ${SUDO} apt-key add -
${SUDO} sh -c 'echo "deb https://packages.deblan.org/debian/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/deblan.list'
${SUDO} apt-get update