2021-12-26 09:13:58 +01:00
# Homebrew launcher wrapper payload
2021-12-30 16:33:50 +01:00
A simple wrapper that is just installing the sd_loader to load homebrew via the homebrew launcher [homebrew_launcher_installer ](https://github.com/wiiu-env/homebrew_launcher_installer ).
2021-12-26 09:13:58 +01:00
## Usage
2021-12-26 10:26:54 +01:00
Place the `50_hbl_installer.rpx` in the `[ENVIRONMENT]/modules/setup` folder and run the [EnvironmentLoader ](https://github.com/wiiu-env/EnvironmentLoader ).
2021-12-31 15:18:23 +01:00
- Requires [homebrew_launcher.elf ](https://github.com/dimok789/homebrew_launcher ) in `sd:/wiiu/apps/homebrew_launcher/homebrew_launcher.elf` .
- Requires [AutobootModule ](https://github.com/wiiu-env/AutobootModule ) to actually launch the Wii U Menu or Homebrew Launcher.
2021-12-26 09:13:58 +01:00
## Building
For building you just need [wut ](https://github.com/devkitPro/wut/ ) installed, then use the `make` command.
## Building using the Dockerfile
It's possible to use a docker image for building. This way you don't need anything installed on your host system.
```
# Build docker image (only needed once)
docker build . -t hblinstallerwrapper-builder
# make
docker run -it --rm -v ${PWD}:/project hblinstallerwrapper-builder make
# make clean
docker run -it --rm -v ${PWD}:/project hblinstallerwrapper-builder make clean
```
## Credits
See [homebrew_launcher_installer ](https://github.com/wiiu-env/homebrew_launcher_installer )