Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Fangal-Airbag committed Sep 14, 2022
1 parent 9f44c3b commit 44b442b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM wiiuenv/devkitppc:20220907

WORKDIR /app
CMD make -j$(nproc)
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,24 @@
This a WUHB port of WUP Installer GX2 which can be found [here](https://sourceforge.net/projects/wup-installer-gx2/)

## Bulding
To build this application you will need [wut](https://github.com/devkitPro/wut) and the following devkitPro packages:

### Makefile
To build this application using make, you will need [wut](https://github.com/devkitPro/wut) and the following devkitPro packages:
`
ppc-zlib ppc-libmad ppc-libogg ppc-libgd ppc-freetype ppc-libjpeg-turbo ppc-libpng ppc-libvorbisidec ppc-glm ppc-bzip2
`

Once the dependencies are installed just run `make` and use the resulting `.wuhb` file.

### Dockerfile
To build this application using docker, run the following commands:
```shell
docker build . -t wupgx2
docker run -it --rm -v ${PWD}:/app wupgx2
```

You can then use the resulting `.wuhb` file.

# Credits
A big thanks goes out to [brienj](https://github.com/xhp-creations) for creating the original rpx port of WUP Installer GX2,
and [Gary](https://github.com/GaryOderNichts) for making the Wii U controller mod version.
Expand Down

0 comments on commit 44b442b

Please sign in to comment.