The .deb
/.rpm
repositories are available at the following url: https://kakwa.github.io/misc-pkg/
If you are using Ubuntu
/Debian
, here how to install the repository:
# If you are not root
export SUDO=sudo
# Get your OS version
. /etc/os-release
# Get the architecture
ARCH=$(dpkg --print-architecture)
# Add the GPG key
wget -qO - https://kakwa.github.io/misc-pkg/GPG-KEY.pub | \
gpg --dearmor | ${SUDO} tee /etc/apt/trusted.gpg.d/misc-pkg.gpg >/dev/null
# Add the repository
echo "deb [arch=${ARCH}] \
https://kakwa.github.io/misc-pkg/deb.${VERSION_CODENAME}.${ARCH}/ \
${VERSION_CODENAME} main" | ${SUDO} tee /etc/apt/sources.list.d/misc-pkg.list
# update
apt update
This project uses Pakste.
Check the Pakste Documention for more details.