toxcore/other/docker/windows/get_packages.sh

69 lines
1.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env sh
set -e -x
#=== Install Packages ===
apt-get update
# Arch-independent packages required for building toxcore's dependencies and toxcore itself
apt-get install -y \
autoconf \
automake \
ca-certificates \
cmake \
git \
libtool \
libc-dev \
make \
pkg-config \
tree \
yasm
# Arch-dependent packages required for building toxcore's dependencies and toxcore itself
if [ "${SUPPORT_ARCH_i686}" = "true" ]; then
apt-get install -y \
g++-mingw-w64-i686 \
gcc-mingw-w64-i686
fi
if [ "${SUPPORT_ARCH_x86_64}" = "true" ]; then
apt-get install -y \
g++-mingw-w64-x86-64 \
gcc-mingw-w64-x86-64
fi
2018-09-19 11:15:50 +08:00
# Packages needed for running toxcore tests
if [ "${SUPPORT_TEST}" = "true" ]; then
apt-get install -y \
apt-transport-https \
curl \
gnupg \
texinfo
# Add Wine package repository to use the latest Wine
echo "deb https://dl.winehq.org/wine-builds/debian/ stretch main" >> /etc/apt/sources.list
curl -o Release.key https://dl.winehq.org/wine-builds/winehq.key
# Verify against a known good key fingerprint. --dry-run makes it so we don't actually import the key.
if ! gpg --batch --dry-run --import --import-options import-show --fingerprint Release.key | grep 'D43F 6401 4536 9C51 D786 DDEA 76F1 A20F F987 672F'; then
echo "Error: WineHQ's Debian package repository key fingerprint didn't match the expected one. Exiting."
exit 1
fi
apt-key add Release.key
dpkg --add-architecture i386
apt-get update
apt-get install -y \
wine-devel \
wine-devel-amd64 \
wine-devel-dbg \
winehq-devel
fi
# Clean up to reduce image size
apt-get clean
rm -rf \
/var/lib/apt/lists/* \
/tmp/* \
/var/tmp/*