mirror of
https://github.com/Maschell/wut_docker.git
synced 2024-11-21 20:09:16 +01:00
Really use the latest wut version
This commit is contained in:
parent
56320edb03
commit
1b722016ff
17
Dockerfile
17
Dockerfile
@ -2,11 +2,16 @@ 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 install -y --no-install-recommends cmake --fix-missing
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y cmake zlib1g-dev gcc g++ build-essential --fix-missing
|
||||
|
||||
ENV WUT_ROOT=${DEVKITPRO}/wut
|
||||
|
||||
RUN wget https://github.com/decaf-emu/wut/releases/download/1.0.0-beta4/wut.linux64.7z && \
|
||||
7z x -y $(ls | grep "linux") -o${WUT_ROOT} && \
|
||||
rm wut.linux64.7z
|
||||
ENV WUT_ROOT=${DEVKITPRO}/wut
|
||||
|
||||
RUN mkdir build && cd build && \
|
||||
cmake -DCMAKE_INSTALL_PREFIX=${WUT_ROOT} ../ && \
|
||||
make install
|
||||
|
Loading…
Reference in New Issue
Block a user