Skip to content

Repackage MAXHUB / Exceed Share packages for use with Debian / Ubuntu

Notifications You must be signed in to change notification settings

alryaz/cvte-exceedshare-repack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cvte-exceedshare-debian

#!/bin/sh
# To add this repository please do:

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

KEYRING=/usr/share/keyrings/cvte.exceedshare.debian.gpg

${SUDO} apt-get update
${SUDO} apt-get -y install apt-transport-https
wget -qO- https://alryaz.github.io/cvte-exceedshare-debian/public.key | gpg --dearmor - | ${SUDO} tee $KEYRING >/dev/null
${SUDO} sh -c 'echo "deb [signed-by='$KEYRING'] https://alryaz.github.io/cvte-exceedshare-debian/repo/ debian main" > /etc/apt/sources.list.d/cvte.exceedshare.list'
${SUDO} apt-get update