mirror of
				https://github.com/yuzu-emu/build-environments.git
				synced 2025-11-04 14:14:56 +00:00 
			
		
		
		
	mingw: Use a variable to target ext libraries
Also modifies a comment. This is all to make it more readable, and also force Docker to give the container new commit tags and rebuild it, since the root certificates have expired.
This commit is contained in:
		
							parent
							
								
									bd491190e7
								
							
						
					
					
						commit
						1fbb7a6a68
					
				| 
						 | 
				
			
			@ -1,5 +1,8 @@
 | 
			
		|||
FROM archlinux:latest
 | 
			
		||||
MAINTAINER yuzu
 | 
			
		||||
 | 
			
		||||
ENV EXT_BIN_URL="https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw"
 | 
			
		||||
 | 
			
		||||
# Workaround for Arch Linux Docker image failing to build
 | 
			
		||||
# From https://stackoverflow.com/questions/66154574
 | 
			
		||||
RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \
 | 
			
		||||
| 
						 | 
				
			
			@ -7,8 +10,8 @@ RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \
 | 
			
		|||
    bsdtar -C / -xvf "$patched_glibc" && \
 | 
			
		||||
    echo 'IgnorePkg = glibc' >> /etc/pacman.conf
 | 
			
		||||
# Add mingw-repo "ownstuff" is a AUR with an up to date mingw64
 | 
			
		||||
# Runs pacman -Syu twice in order to work around pacman issues where the first run only updates the current distro packages
 | 
			
		||||
# and the second run actually pulls the updates from the repos.
 | 
			
		||||
# Runs pacman -Syu twice in order to work around pacman issues where the first run only updates the
 | 
			
		||||
# current distro packages, and the second run actually pulls the updates from the repos.
 | 
			
		||||
RUN useradd -m -u 1027 -s /bin/bash yuzu && mkdir -p /tmp/pkgs && \
 | 
			
		||||
    echo "[ownstuff]" >> /etc/pacman.conf && \
 | 
			
		||||
    echo "SigLevel = Optional TrustAll" >> /etc/pacman.conf && \
 | 
			
		||||
| 
						 | 
				
			
			@ -37,14 +40,14 @@ RUN useradd -m -u 1027 -s /bin/bash yuzu && mkdir -p /tmp/pkgs && \
 | 
			
		|||
    mingw-w64-zlib \
 | 
			
		||||
    && \
 | 
			
		||||
    cd /tmp && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-fmt-8.0.0-5-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-base-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-declarative-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-graphicaleffects-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-multimedia-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-tools-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-qt5-winextras-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q https://github.com/yuzu-emu/ext-linux-bin/raw/main/mingw/mingw-w64-zstd-1.5.0-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-fmt-8.0.0-5-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-base-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-declarative-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-graphicaleffects-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-multimedia-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-tools-5.15.2-1-x86_64.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-qt5-winextras-5.15.2-1-any.pkg.tar.zst && \
 | 
			
		||||
    wget -q ${EXT_BIN_URL}/mingw-w64-zstd-1.5.0-1-any.pkg.tar.zst && \
 | 
			
		||||
    pacman -U --noconfirm --noprogressbar mingw-w64-{fmt-8.0.0-5-any,qt5-base-5.15.2-1-x86_64,qt5-declarative-5.15.2-1-x86_64,qt5-graphicaleffects-5.15.2-1-any,qt5-multimedia-5.15.2-1-any,qt5-tools-5.15.2-1-x86_64,qt5-winextras-5.15.2-1-any,zstd-1.5.0-1-any}.pkg.tar.zst && \
 | 
			
		||||
    pacman -Scc --noconfirm && \
 | 
			
		||||
    rm -rf /usr/share/man/ /tmp/* /var/tmp/ /usr/{i686-w64-mingw32,lib32} /usr/lib/gcc/i686-w64-mingw32
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue