mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-27 21:01:30 +00:00

This is a complement to #7416 where it replaces opening the replay's download URL in a browser with directly downloading it into the player's save folder.
15 lines
423 B
Plaintext
15 lines
423 B
Plaintext
FROM wesnoth/wesnoth:msys2-base
|
|
|
|
RUN pacman -S --noconfirm scons mingw-w64-gcc pkg-config python-pefile expect nsis git
|
|
|
|
RUN pacman-cross -S --noconfirm \
|
|
mingw-w64-x86_64-boost \
|
|
mingw-w64-x86_64-SDL2 \
|
|
mingw-w64-x86_64-SDL2_image \
|
|
mingw-w64-x86_64-SDL2_mixer \
|
|
mingw-w64-x86_64-pango \
|
|
mingw-w64-x86_64-curl-winssl
|
|
|
|
#symlink for compatibility with previous Dockerfiles
|
|
RUN ln -s /msys64 /windows
|