mirror of
https://github.com/Maschell/wut_docker.git
synced 2024-11-21 20:09:16 +01:00
18 lines
412 B
Docker
18 lines
412 B
Docker
FROM wiiulegacy/core:0.1
|
|
|
|
MAINTAINER Maschell <maschell@gmx.de>
|
|
|
|
RUN git clone --recursive https://github.com/decaf-emu/wut
|
|
|
|
WORKDIR wut
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y cmake zlib1g-dev gcc g++ build-essential --fix-missing
|
|
|
|
ENV WUT_ROOT=${DEVKITPRO}/wut
|
|
|
|
RUN mkdir build && cd build && \
|
|
cmake -DCMAKE_INSTALL_PREFIX=${WUT_ROOT} ../ && \
|
|
make install
|