From 36aee0481f503b30fba1324ef300ea0e69af2336 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 13 Feb 2022 15:09:16 +0100 Subject: [PATCH] Update the README --- README.md | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f666e2d..97e4690 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ -Requires the [WiiUPluginLoaderBackendModule](https://github.com/wiiu-env/WiiUPluginLoaderBackend) to be running via [SetupPayload](https://github.com/wiiu-env/SetupPayload). -Requires [wut](https://github.com/decaf-emu/wut) for building. -Install via `make install`. \ No newline at end of file +## libwupsbackend +Requires the [WiiUPluginLoaderBackendModule](https://github.com/wiiu-env/WiiUPluginLoaderBackend) to be running via [WUMSLoader](https://github.com/wiiu-env/WUMSLoader). +Requires [wut](https://github.com/devkitpro/wut) for building. +Install via `make install`. + +## Building +Make you to have [wut](https://github.com/devkitPro/wut/) installed and use the following command for build: +``` +make install +``` + +## Use this lib in Dockerfiles. +A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile. +``` +[...] +COPY --from=wiiuenv/libwupsbackend:[tag] /artifacts $DEVKITPRO +[...] +``` +Replace [tag] with a tag you want to use, a list of tags can be found [here](https://hub.docker.com/r/wiiuenv/libwupsbackend/tags). +It's highly recommended to pin the version to the **latest date** instead of using `latest`. \ No newline at end of file