Go to file
2021-09-17 16:40:42 +02:00
.github/workflows Add a Dockerfile + Github workflow 2020-12-11 15:32:34 +01:00
data Update the default icon 2021-04-07 17:10:11 +02:00
src Fix loading .wuhb when a USB drive is connected 2021-04-17 00:03:24 +02:00
.gitignore Use new makefile to adopt to latest WUPS version 2020-06-17 13:44:19 +02:00
Dockerfile Update Dockerfile to use WUPS 0.5 2021-09-17 16:40:42 +02:00
filelist.sh WIP2 2019-11-24 14:14:45 +01:00
Makefile Use the librpxloader for loading the bundle and it's meta data 2021-01-24 15:49:26 +01:00
README.md Add a Dockerfile + Github workflow 2020-12-11 15:32:34 +01:00

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 homebrew_on_menu_plugin-builder

# make 
docker run -it --rm -v ${PWD}:/project homebrew_on_menu_plugin-builder make

# make clean
docker run -it --rm -v ${PWD}:/project homebrew_on_menu_plugin-builder make clean