Skip to content

Instantly share code, notes, and snippets.

@JuanjoSalvador
Last active January 30, 2022 21:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanjoSalvador/5705da9d35aa3914a4ee96c25e1f7e5f to your computer and use it in GitHub Desktop.
Save JuanjoSalvador/5705da9d35aa3914a4ee96c25e1f7e5f to your computer and use it in GitHub Desktop.
Script to install Wine Staging from WineHQ repositories (Debian)
#!/bin/bash
VERSIONS="buster|bullseye|bookworm"
BRANCHES="stable|devel|staging"
if [ "${UID}" -eq 0 ] ; then
ARCH=$(dpkg --print-architecture)
if [ "${ARCH}" == "amd64" ] ; then
echo "Adding i386 architecture..."
dpkg --add-architecture i386
echo -n "Select a version [${VERSIONS}]: " && read VERSION
if echo ${VERSIONS} | grep "${VERSION}" >/dev/null 2>&1 ; then
echo "deb https://dl.winehq.org/wine-builds/debian/ ${VERSION} main" >> /etc/apt/sources.list.d/winehq.list
echo "Downloading and adding public key to APT repository..."
wget -nc https://dl.winehq.org/wine-builds/winehq.key >/dev/null 2>&1
apt-key add winehq.key >/dev/null 2>&1
rm winehq.key
echo "Updating repositories..."
apt update >/dev/null 2>&1
else
echo "${VERSION} is not a valid entry"
fi
echo -n "Select a branch [stable|devel|staging]: " && read BRANCH
if echo ${BRANCHES} | grep "${BRANCH}" >/dev/null 2>&1 ; then
echo "Installing Wine ${BRANCH}..."
apt install --install-recommends winehq-${BRANCH}
fi
else
if [ "${ARCH}" -ne "i386" ] ; then
echo "Wine is not supported yet for ${ARCH}"
fi
fi
else
echo "You must run this script as superuser."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment