mirror of
https://github.com/Maschell/libntfs-wiiu.git
synced 2024-11-05 20:55:09 +01:00
15 lines
425 B
Docker
15 lines
425 B
Docker
FROM wiiulegacy/core:0.1
|
|
|
|
COPY --from=wiiulegacy/libiosuhax:0.3 /artifacts $DEVKITPRO/portlibs
|
|
|
|
RUN git clone https://github.com/Maschell/libntfs-wiiu && cd libntfs-wiiu && git checkout v2013.1.13
|
|
WORKDIR libntfs-wiiu
|
|
|
|
RUN make wiiu-release && \
|
|
find $DEVKITPRO/portlibs -maxdepth 3 -type f -delete && \
|
|
make -C source wiiu-install PLATFORM=wiiu && \
|
|
cp -r ${DEVKITPRO}/portlibs /artifacts
|
|
|
|
WORKDIR /artifacts
|
|
RUN find .
|