mirror of
https://github.com/Maschell/dynamic_libs.git
synced 2024-11-15 01:15:15 +01:00
10 lines
271 B
Docker
10 lines
271 B
Docker
|
FROM wiiulegacy/core:0.1
|
||
|
|
||
|
RUN rm -rf $DEVKITPRO/portlibs
|
||
|
RUN git clone https://github.com/Maschell/dynamic_libs -b lib
|
||
|
WORKDIR dynamic_libs
|
||
|
RUN git checkout -b v0.1
|
||
|
RUN 7z x -y ./libs/portlibs.zip -o${DEVKITPRO}
|
||
|
RUN make && make install
|
||
|
WORKDIR ..
|
||
|
RUN rm -rf dynamic_libs
|