diff --git a/platforms/wiiu/ghs5.3.22/Dockerfile b/platforms/wiiu/ghs5.3.22/Dockerfile new file mode 100644 index 0000000..ad878c4 --- /dev/null +++ b/platforms/wiiu/ghs5.3.22/Dockerfile @@ -0,0 +1,17 @@ +# NOTE: This file is generated automatically via template.py. Do not edit manually! + + +FROM alpine:3.18 as base + +RUN mkdir -p /compilers/wiiu/ghs5.3.22 + +RUN wget -O ghs5.3.22.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/ghs5.3.22.tar.gz" +RUN tar xvzf ghs5.3.22.tar.gz -C /compilers/wiiu/ghs5.3.22 + +RUN chown -R root:root /compilers/wiiu/ghs5.3.22/ +RUN chmod +x /compilers/wiiu/ghs5.3.22/* + + +FROM scratch as release + +COPY --from=base /compilers /compilers diff --git a/values.yaml b/values.yaml index d7f6942..8c68fd1 100644 --- a/values.yaml +++ b/values.yaml @@ -977,6 +977,12 @@ compilers: template: common/default file: https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz + # Wii U + - id: ghs5.3.22 + platform: wiiu + template: common/default + file: https://github.com/decompme/compilers/releases/download/compilers/ghs5.3.22.tar.gz + # WIN32 - id: msvc6.0 platform: win32