Go to file
2021-10-16 14:08:39 +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 Remove unused icon cache 2021-10-16 14:08:39 +02:00
.gitignore Use new makefile to adopt to latest WUPS version 2020-06-17 13:44:19 +02:00
Dockerfile Update to use WUPS 0.6 2021-09-24 20:50:35 +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