Squashed 'external/toxcore/c-toxcore/' content from commit 67badf69
git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 67badf69416a74e74f6d7eb51dd96f37282b8455
This commit is contained in:
54
other/docker/windows/get_packages.sh
Executable file
54
other/docker/windows/get_packages.sh
Executable file
@ -0,0 +1,54 @@
|
||||
#!/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 \
|
||||
curl \
|
||||
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
|
||||
|
||||
# Packages needed for running toxcore tests
|
||||
if [ "$SUPPORT_TEST" = "true" ]; then
|
||||
apt-get install -y \
|
||||
texinfo
|
||||
|
||||
dpkg --add-architecture i386
|
||||
apt-get update
|
||||
apt-get install -y \
|
||||
wine \
|
||||
wine32 \
|
||||
wine64
|
||||
fi
|
||||
|
||||
# Clean up to reduce image size
|
||||
apt-get clean
|
||||
rm -rf \
|
||||
/var/lib/apt/lists/* \
|
||||
/tmp/* \
|
||||
/var/tmp/*
|
Reference in New Issue
Block a user