1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Sort installed packages in mingw-arch

This commit is contained in:
Michał Janiszewski
2018-01-24 20:41:37 +01:00
parent df4c23b6ee
commit 5c67ca4efc

View File

@@ -41,24 +41,24 @@ RUN echo "[mingw-w64]" >> /etc/pacman.conf \
# Install MingW packages
RUN pacman -S --noconfirm --noprogressbar \
mingw-w64-boost \
mingw-w64-binutils \
mingw-w64-crt \
mingw-w64-gcc \
mingw-w64-headers \
mingw-w64-winpthreads \
mingw-w64-boost \
mingw-w64-cmake \
mingw-w64-crt \
mingw-w64-curl \
mingw-w64-fontconfig \
mingw-w64-freetype2 \
mingw-w64-gcc \
mingw-w64-headers \
mingw-w64-libiconv \
mingw-w64-libpng \
mingw-w64-openssl \
mingw-w64-pkg-config \
mingw-w64-sdl2 \
mingw-w64-tools \
mingw-w64-zlib \
mingw-w64-sdl2_ttf \
mingw-w64-curl \
mingw-w64-tools \
mingw-w64-winpthreads \
mingw-w64-zlib \
&& (echo -e "y\ny\n" | pacman -Scc)
RUN useradd --create-home --comment "Arch Build User" build && \