mirror of
https://github.com/Ryuzaki-MrL/savemii.git
synced 2026-04-05 00:45:43 -05:00
22 lines
548 B
Docker
22 lines
548 B
Docker
FROM wiiuenv/devkitppc:20220917 AS final
|
|
|
|
COPY --from=wiiuenv/libmocha:20220919 /artifacts $DEVKITPRO
|
|
|
|
RUN apt -y install gettext
|
|
CMD dkp-pacman -Syyu --noconfirm ppc-freetype
|
|
|
|
RUN git clone --recursive https://github.com/Xpl0itU/libfat --single-branch && \
|
|
cd libfat && \
|
|
make -j$(nproc) wiiu-install && \
|
|
cd .. && \
|
|
rm -rf libfat
|
|
|
|
RUN git clone --recursive https://github.com/yawut/libromfs-wiiu --single-branch && \
|
|
cd libromfs-wiiu && \
|
|
make -j$(nproc) && \
|
|
make install && \
|
|
cd .. && \
|
|
rm -rf libromfs-wiiu
|
|
|
|
WORKDIR /project
|